/* ============================================
   INDORI NAMKIN & SPICES — STYLESHEET
   UPT EXPO PVT LTD
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #C84000;
  --red-dark:  #9E3300;
  --red-light: #E8701A;
  --gold:      #D4A017;
  --gold-light:#F5C842;
  --cream:     #FFF9F2;
  --warm:      #FFF3E6;
  --text:      #1A1208;
  --text-muted:#6B5744;
  --border:    #EBD9C8;
  --white:     #FFFFFF;
  --shadow:    0 4px 32px rgba(200,64,0,.10);
  --shadow-lg: 0 12px 48px rgba(200,64,0,.16);
  --radius:    16px;
  --radius-sm: 8px;
  --nav-h:     72px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

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

/* ---------- UTILITIES ---------- */
.container {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section-pad { padding-block: clamp(4rem, 8vw, 7rem); }
.bg-warm { background: var(--warm); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  background: #C8400015;
  padding: .3em .9em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.accent { color: var(--red); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: .8em 2em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(200,64,0,.30);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,64,0,.40);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: .78em 2em;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-lg { font-size: 1.05rem; padding: .95em 2.4em; }
.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: .9em; border-radius: var(--radius-sm); }

.btn-nav {
  background: var(--red);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: .55em 1.5em;
  border-radius: 100px;
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--red-dark); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  height: var(--nav-h);
}
.navbar.scrolled {
  background: rgba(255,249,242,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

/* Both logos same height in navbar */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* UPT logo slightly smaller — it's the corporate identifier */
.logo-upt { height: 36px; }

/* Vertical divider between the two logos */
.logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.3);
  border-radius: 1px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .logo-divider { background: var(--border); }

/* Slot wraps the <img> and its placeholder sibling */
.logo-img-slot {
  position: relative;
  display: flex;
  align-items: center;
}

/* Placeholder shown when logo image file is missing */
.logo-placeholder {
  display: none;
  align-items: center;
  gap: .35rem;
  height: 44px;
  padding: 0 .6rem;
  border: 1.5px dashed rgba(255,255,255,.4);
  border-radius: 6px;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.logo-placeholder svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .7;
}
.logo-upt + .logo-placeholder { height: 36px; }
.navbar.scrolled .logo-placeholder {
  border-color: var(--border);
  color: var(--text-muted);
}

/* Fallback text — shown only when the image fails to load */
.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text-upt .logo-brand { font-size: .92rem; }
.logo-text-upt .logo-sub   { font-size: .65rem; }

.logo-brand {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.logo-sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .07em;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.navbar.scrolled .logo-brand { color: var(--text); }
.navbar.scrolled .logo-sub   { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.btn-nav) {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}
.nav-links a:not(.btn-nav):hover { color: var(--white); }
.navbar.scrolled .nav-links a:not(.btn-nav) { color: var(--text-muted); }
.navbar.scrolled .nav-links a:not(.btn-nav):hover { color: var(--red); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1A0800 0%, #4A1500 40%, #8B2500 70%, #C84000 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(232,112,26,.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(200,64,0,.20) 0%, transparent 50%);
}

/* Decorative spice pattern */
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.15) 0%, rgba(200,64,0,.08) 50%, transparent 70%);
  border: 1px solid rgba(212,160,23,.15);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,8,0,.7) 0%, rgba(26,8,0,.2) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.3);
  padding: .4em 1.2em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--gold-light); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: .3; }
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--red);
  padding-block: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: .25rem; }
.stat-num  {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-img-frame {
  position: relative;
  width: clamp(260px, 40vw, 440px);
  aspect-ratio: 1;
}

.about-pattern-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #FFF3E6 0deg 60deg,
    #FBE0C0 60deg 120deg,
    #FFF3E6 120deg 180deg,
    #FBE0C0 180deg 240deg,
    #FFF3E6 240deg 300deg,
    #FBE0C0 300deg 360deg
  );
  border: 3px solid var(--border);
}

.about-img-inner {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  overflow: visible;
}

.spice-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  opacity: .12;
  animation: spicePulse 4s ease-in-out infinite;
}
.c1 { width: 55%; height: 55%; top: -10%; left: 15%; animation-delay: 0s; }
.c2 { width: 40%; height: 40%; bottom: -8%; right: 5%; background: var(--gold); animation-delay: 1.5s; }
.c3 { width: 30%; height: 30%; top: 30%; right: -8%; background: var(--red-light); animation-delay: .8s; }

@keyframes spicePulse {
  0%, 100% { transform: scale(1); opacity: .12; }
  50%       { transform: scale(1.1); opacity: .2; }
}

.about-center-badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 8px 32px rgba(200,64,0,.4);
  text-align: center;
}
.about-center-badge span:last-child {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: .97rem;
}
.about-text strong { color: var(--text); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: .8rem;
  font-weight: 500;
  color: var(--red);
  background: #C8400012;
  border: 1px solid #C8400030;
  padding: .35em .9em;
  border-radius: 100px;
}

/* ---------- PRODUCTS ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #C8400040;
}
.product-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, #FFF9F2 0%, #FFF3E6 100%);
  box-shadow: var(--shadow);
}
.product-card.featured:hover { box-shadow: var(--shadow-lg); }

.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3em 1.2em;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200,64,0,.35);
}

.product-icon {
  width: 64px; height: 64px;
  margin-bottom: 1.25rem;
}
.product-icon svg { width: 100%; height: 100%; }

.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
}
.product-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.product-features li {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ---------- WHY US ---------- */
/* ---------- GALLERY ---------- */
.gallery-section { overflow: hidden; }

.gallery-stage {
  position: relative;
  margin-top: 1rem;
}

/* Track wrapper — clips the overflow */
.gallery-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.gallery-track-wrap.dragging { cursor: grabbing; }

/* The scrollable track */
.gallery-track {
  display: flex;
  gap: 1.25rem;
  padding: .5rem clamp(1rem, 4vw, 2.5rem) 1.5rem;
  will-change: transform;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-track.no-transition { transition: none; }

/* Individual card */
.gallery-item {
  position: relative;
  flex: 0 0 clamp(260px, 30vw, 420px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
}
.gallery-item:hover {
  transform: scale(1.025);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.25rem .9rem;
  background: linear-gradient(to top, rgba(26,8,0,.72) 0%, transparent 100%);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: none;
}

/* Placeholder state (image missing) */
.gallery-item.placeholder {
  background: linear-gradient(135deg, var(--warm) 0%, #F5E0C8 100%);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item.placeholder::before {
  content: 'Photo Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.gallery-item.placeholder img { display: none; }

/* Prev / Next buttons */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - .75rem)); /* offset for dots */
  z-index: 10;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), opacity var(--transition);
  color: var(--text);
}
.gallery-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(200,64,0,.35);
  transform: translateY(calc(-50% - .75rem)) scale(1.08);
}
.gallery-btn:disabled {
  opacity: .3;
  pointer-events: none;
}
.gallery-btn svg { width: 20px; height: 20px; }

.gallery-prev { left: clamp(.5rem, 2vw, 1.5rem); }
.gallery-next { right: clamp(.5rem, 2vw, 1.5rem); }

/* Dot indicators */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
  padding-bottom: .25rem;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width var(--transition);
}
.gallery-dot.active {
  background: var(--red);
  width: 24px;
}

/* Pause indicator on hover */
.gallery-stage:hover .gallery-pause-hint { opacity: 1; }
.gallery-pause-hint {
  position: absolute;
  top: .75rem;
  right: clamp(1rem, 4vw, 2.5rem);
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(26,8,0,.55);
  backdrop-filter: blur(6px);
  padding: .3em .8em;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  z-index: 5;
}

/* ---------- PILLARS ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #C8400030;
}

.pillar-icon {
  width: 48px; height: 48px;
  margin-bottom: 1rem;
}
.pillar-icon svg { width: 100%; height: 100%; }

.pillar h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.pillar p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1A0800 0%, #6B1A00 50%, #C84000 100%);
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(212,160,23,.08);
  border: 1px solid rgba(212,160,23,.12);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cta-text h2 span { color: var(--gold-light); }
.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-top: .6rem;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-intro {
  font-size: .97rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-value {
  font-size: .97rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
a.contact-value:hover { color: var(--red); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7em 1em;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B5744' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75em center;
  background-size: 16px;
  padding-right: 2.5em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,64,0,.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0967E;
}

.form-success {
  display: none;
  font-size: .9rem;
  font-weight: 500;
  color: #2E7D32;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  padding: .75em 1em;
  text-align: center;
}
.form-success.show { display: block; }

/* ---------- FOOTER ---------- */
.footer {
  background: #100800;
  padding-block: 3rem 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Each logo + text pair */
.footer-logo-group {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.footer-logo { height: 42px; width: auto; object-fit: contain; }

/* Slot + placeholder for footer logos */
.footer-logo-slot {
  display: flex;
  align-items: center;
}

.footer-logo-placeholder {
  display: none;
  align-items: center;
  gap: .35rem;
  height: 42px;
  padding: 0 .6rem;
  border: 1.5px dashed rgba(255,255,255,.25);
  border-radius: 6px;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.footer-logo-placeholder svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .6;
}

/* Vertical divider between the two footer logos */
.footer-logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 1px;
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-brand-text strong {
  font-family: var(--font-head);
  font-size: .98rem;
  color: var(--white);
}
.footer-brand-text span {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: .88rem;
  font-style: italic;
  color: var(--gold-light);
  opacity: .85;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-img-frame { width: clamp(200px, 60vw, 340px); }
  .products-grid  { grid-template-columns: 1fr 1fr; }
  .pillars-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-inner   { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links   { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 600px) {
  .stats-grid     { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .products-grid  { grid-template-columns: 1fr; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .cta-inner      { flex-direction: column; text-align: center; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .footer-tagline { display: none; }
}
