@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --red: #C0392B;
  --red-dark: #922B21;
  --dark: #1A1A1A;
  --dark2: #2C2C2C;
  --mid: #555;
  --light-bg: #F8F6F2;
  --white: #FFFFFF;
  --border: #E5E0D8;
  --shadow: 0 4px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.78rem;
  padding: 8px 0;
  letter-spacing: 0.3px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--gold-light); }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { color: #aaa; transition: var(--transition); }
.topbar-links a:hover { color: var(--gold-light); }

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
}
.logo img { height: 88px; object-fit: contain; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--dark2);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 7px; padding: 6px; z-index: 1001; position: relative; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }

/* ===== CONTAINER ===== */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }

/* ===== VIDEO HERO ===== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,10,5,0.78) 45%, rgba(20,10,5,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  animation: fadeInLeft 0.9s ease both;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-title span { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Quote Form Overlay on Hero */
.hero-quote-card {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 360px;
  background: rgba(255,255,255,0.97);
  z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 32px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.hero-quote-card h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--dark); }
.hero-quote-card p { color: var(--mid); font-size: 0.85rem; margin-bottom: 22px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2px;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ===== SECTION STYLES ===== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.section-desc { color: var(--mid); max-width: 600px; font-size: 1rem; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  padding: 36px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 12px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 6px; }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.product-img {
  height: 220px;
  background: var(--light-bg);
  overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.product-body { padding: 22px; }
.product-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-body p { color: var(--mid); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.feat-pill {
  background: var(--light-bg);
  border: 1px solid var(--border);
  font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; color: var(--mid);
}

/* ===== WHY CHOOSE ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { background: var(--white); box-shadow: var(--shadow); border-color: var(--gold); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.why-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--mid); font-size: 0.88rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { color: var(--mid); font-size: 0.9rem; font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 700; font-size: 1rem;
  font-family: 'Playfair Display', serif;
}
.testi-name { font-weight: 600; font-size: 0.92rem; }
.testi-role { color: var(--mid); font-size: 0.78rem; }

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1810 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.quote-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote-text h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 16px; }
.quote-text p { color: rgba(255,255,255,0.7); }
.quote-form-box { background: var(--white); border-radius: var(--radius); padding: 36px; }
.quote-form-box h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--dark); }
.quote-form-box p { color: var(--mid); font-size: 0.85rem; margin-bottom: 22px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; color: var(--dark2); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1810 60%, #1a1a1a 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1rem; margin-bottom: 30px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== BANNER QUOTE STRIP ===== */
.banner-quote-strip {
  background: var(--gold);
  padding: 22px 0;
}
.bqs-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.bqs-text h4 { font-size: 1.15rem; color: var(--dark); }
.bqs-text p { font-size: 0.85rem; color: rgba(0,0,0,0.6); }
.bqs-form { display: flex; gap: 10px; flex-wrap: wrap; }
.bqs-form input, .bqs-form select {
  padding: 10px 14px;
  border: none;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.85);
  min-width: 180px;
}
.bqs-form input:focus, .bqs-form select:focus { outline: 2px solid var(--dark); background: white; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 48px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-col h5 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; transition: var(--transition); color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.87rem; }
.footer-contact-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===== LOCATION PAGE ===== */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.location-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1810 100%);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.location-city { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.location-state { color: var(--gold-light); font-size: 0.78rem; margin-top: 2px; }
.location-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.location-body { padding: 22px 24px; }
.location-manager { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; cursor: pointer; }
.manager-photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 700; font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.location-manager:hover .manager-photo { transform: scale(1.08); box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }
.manager-info { flex: 1; }
.manager-name { font-weight: 600; font-size: 0.95rem; }
.manager-title { color: var(--mid); font-size: 0.78rem; }
.manager-contact-hint { font-size: 0.74rem; color: var(--gold-dark); font-weight: 500; }
.location-details { border-top: 1px solid var(--border); padding-top: 16px; }
.loc-detail { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.86rem; align-items: flex-start; }
.loc-icon { color: var(--gold); font-size: 0.95rem; margin-top: 1px; flex-shrink: 0; }
.loc-text { color: var(--mid); }
.loc-text a { color: var(--gold-dark); font-weight: 500; }
.loc-text a:hover { text-decoration: underline; }

/* Filter Bar */
.filter-bar {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end;
}
.filter-group { display: flex; flex-direction: column; gap: 5px; }
.filter-group label { font-size: 0.78rem; font-weight: 600; color: var(--dark2); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group select, .filter-group input {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  background: var(--white);
  min-width: 180px;
  outline: none;
  transition: var(--transition);
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--gold); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%; max-width: 480px;
  padding: 40px 36px;
  position: relative;
  animation: fadeInUp 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--border);
  background: none; cursor: pointer; font-size: 1rem; color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.modal-header { margin-bottom: 24px; }
.modal-manager-info { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.modal-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: var(--dark);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.modal-manager-name { font-size: 1.2rem; margin-bottom: 2px; }
.modal-manager-sub { font-size: 0.82rem; color: var(--mid); }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .big-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-img-badge .small-text { font-size: 0.8rem; font-weight: 600; margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-item { text-align: center; padding: 24px; border-radius: var(--radius); background: var(--light-bg); border: 1px solid var(--border); }
.value-icon { font-size: 2rem; margin-bottom: 10px; }
.value-item h4 { font-size: 1rem; margin-bottom: 6px; }
.value-item p { font-size: 0.84rem; color: var(--mid); }

/* ===== MANUFACTURING ===== */
.mfg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mfg-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--dark);
  min-height: 280px;
}
.mfg-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: var(--transition); }
.mfg-card:hover img { opacity: 0.4; transform: scale(1.04); }
.mfg-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
}
.mfg-card-label h4 { font-size: 1.2rem; margin-bottom: 4px; }
.mfg-card-label p { font-size: 0.84rem; color: rgba(255,255,255,0.7); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow); }
.ci-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-text h5 { font-size: 0.9rem; margin-bottom: 3px; }
.ci-text a, .ci-text p { color: var(--mid); font-size: 0.85rem; }
.ci-text a:hover { color: var(--gold-dark); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-box > p { color: var(--mid); font-size: 0.88rem; margin-bottom: 26px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65px ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== UTILITY ===== */
.gold-text { color: var(--gold-dark); }
.red-text { color: var(--red); }
.divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0; }
.divider-center { margin-left: auto; margin-right: auto; }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--dark); }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 20px;
  font-size: 0.8rem; color: var(--mid);
}

/* Success message */
.success-msg {
  background: #d4edda; color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.88rem; margin-top: 12px;
  display: none;
}
.success-msg.show { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-quote-card { width: 320px; padding: 28px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ── Nav stays sticky/fixed so dropdown stacks below it ── */
  #site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* ── Mobile dropdown ── */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 2px solid var(--gold);
    gap: 2px;
    z-index: 999;
    animation: fadeInUp 0.2s ease;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: 8px;
    color: var(--dark2);
    transition: var(--transition);
  }
  .nav-links a:hover, .nav-links a.active {
    background: var(--light-bg);
    color: var(--gold-dark);
    padding-left: 20px;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    background: var(--red) !important;
    color: #fff !important;
  }

  /* ── Hamburger visible ── */
  .hamburger { display: flex; }

  /* ── Hamburger → X animation ── */
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Page sections ── */
  .hero-quote-card { display: none; }
  .hero { height: 70vh; }
  .hero-content { max-width: 100%; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mfg-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .banner-quote-strip { display: none; }
  .bqs-inner { flex-direction: column; }
}
