/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: #fefcf9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

/* ===== Theme Variables ===== */
:root {
  --brand: #b45309;          /* kraft brown */
  --brand-dark: #78350f;
  --accent: #d97706;         /* warm amber */
  --accent-light: #fbbf24;
  --cream: #fefcf9;
  --cream-2: #fdf6e8;
  --ink: #1f2937;
  --ink-2: #4b5563;
  --muted: #6b7280;
  --line: #e7e2d8;
  --shadow-sm: 0 4px 12px rgba(120, 53, 15, 0.06);
  --shadow-md: 0 10px 30px rgba(120, 53, 15, 0.1);
  --shadow-lg: 0 20px 50px rgba(120, 53, 15, 0.15);
  --radius: 12px;
  --radius-lg: 18px;
  --container: 1200px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217, 119, 6, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); }
.btn-light {
  background: #fff; color: var(--brand);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-block { width: 100%; padding: 16px; }

/* ===== Eyebrow & Headings ===== */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 14px; }
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1.15rem; font-weight: 600; }
.accent { color: var(--accent); font-style: italic; }

.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; margin-top: 8px; }

/* ===== Top Bar ===== */
.topbar {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.dot { opacity: 0.5; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254, 252, 249, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { display: flex; flex-shrink: 0; }
.logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--brand-dark); line-height: 1; }
.logo-text small { display: block; font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }
.logo-light .logo-text strong { color: #fff; }
.logo-light .logo-text small { color: rgba(255,255,255,0.6); }

.nav { display: flex; gap: 30px; }
.nav a {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--brand); }
.nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 22px; font-size: 14px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1920&q=85') center/cover;
  z-index: 0;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.92) 0%, rgba(31, 41, 55, 0.85) 60%, rgba(120, 53, 15, 0.7) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 100px 24px; max-width: 900px; }
.hero .eyebrow { color: var(--accent-light); }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 720px;
}
.hero-stats > div strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stats > div span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
  letter-spacing: 0.4px;
}
.scroll-down {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  opacity: 0.7;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== About ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-images { position: relative; height: 540px; }
.about-img-1 {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-img-2 {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--cream);
  overflow: hidden;
}
.about-illus svg, .why-illus svg { width: 100%; height: 100%; display: block; }
.why-illus { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute;
  top: 40px; right: 0;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}
.about-content p { color: var(--ink-2); margin-bottom: 16px; font-size: 1.02rem; }
.about-content strong { color: var(--brand-dark); }
.about-points { margin: 26px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-points li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 14.5px;
  color: var(--ink);
}
.about-points li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Services ===== */
.services { background: var(--cream-2); position: relative; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--cream), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  color: var(--brand);
  border-radius: 16px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  transform: rotate(-6deg);
}
.service-card p { color: var(--ink-2); font-size: 14.5px; }

/* ===== Products ===== */
.products { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.4s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.product-img-illus { background: var(--cream-2); display: flex; align-items: center; justify-content: center; }
.product-img-illus svg { width: 100%; height: 100%; display: block; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(120, 53, 15, 0.2));
}
.product-body { padding: 26px 28px; }
.product-body p { color: var(--ink-2); font-size: 14.5px; }

/* ===== Why Choose Us ===== */
.why { background: var(--cream-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-content > p { color: var(--ink-2); margin-bottom: 30px; }
.why-features { display: grid; gap: 24px; }
.why-feature {
  position: relative;
  padding-left: 60px;
}
.why-num {
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(217, 119, 6, 0.3);
}
.why-feature h4 { margin-bottom: 4px; color: var(--brand-dark); }
.why-feature p { color: var(--ink-2); font-size: 14.5px; }
.why-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ===== Industries ===== */
.industries { background: var(--cream); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.industry-card h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--brand-dark); }
.industry-card p { color: var(--ink-2); font-size: 13.5px; }

/* ===== Process ===== */
.process { background: var(--brand-dark); color: #fff; position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1600&q=70') center/cover;
  opacity: 0.07;
}
.process .section-head { position: relative; }
.process h2 { color: #fff; }
.process .eyebrow { color: var(--accent-light); }
.process .section-head p { color: rgba(255,255,255,0.8); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h4 { color: #fff; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.75); font-size: 13.5px; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  padding: 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.cta-inner h2 { color: #fff; margin-bottom: 6px; }
.cta-inner p { color: rgba(255,255,255,0.9); }

/* ===== Testimonials ===== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p {
  color: var(--ink-2);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.7;
}
.author strong { display: block; color: var(--brand-dark); font-size: 15px; }
.author span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ===== Contact ===== */
.contact { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact-info > p { color: var(--ink-2); margin-bottom: 30px; }
.contact-list { display: grid; gap: 22px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.ci-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(217, 119, 6, 0.3);
}
.contact-list strong { display: block; color: var(--brand-dark); font-size: 15px; margin-bottom: 4px; }
.contact-list p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

.contact-form {
  background: #fff;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-form h3 { margin-bottom: 24px; color: var(--brand-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  transition: all 0.2s;
  outline: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

/* ===== Footer ===== */
.footer {
  background: #1a1614;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-col h5 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.footer-col p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent-light); }
.contact-mini li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 14px;
  }
  .header-cta { display: none; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .products-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-stats > div strong { font-size: 1.8rem; }
  .topbar-right { display: none; }
  .services-grid, .products-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-images { height: 420px; }
  .contact-form { padding: 32px 24px; }
}
