/* Home page redesign — scoped under .home-redesign so header/footer stay untouched */

.home-redesign {
  font-family: 'Inter', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1f1a15;
  background: #faf7f1;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.home-redesign img { max-width: 100%; display: block; }
.home-redesign a { color: inherit; text-decoration: none; }
.home-redesign .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Buttons ---------- */
.home-redesign .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
  line-height: 1.2;
  text-decoration: none;
}
.home-redesign .btn-primary { background: #4a2f14; color: #fff; }
.home-redesign .btn-primary:hover,
.home-redesign .btn-primary:focus { background: #3a2510; color: #fff; }
.home-redesign .btn-outline {
  background: transparent;
  color: #14100c;
  border-color: #14100c;
}
.home-redesign .btn-outline:hover,
.home-redesign .btn-outline:focus { background: #14100c; color: #fff; }
.home-redesign .btn-outline-dark {
  background: transparent;
  color: #14100c;
  border: 1.5px solid #14100c;
  padding: 14px 26px;
}
.home-redesign .btn-outline-dark:hover,
.home-redesign .btn-outline-dark:focus { background: #14100c; color: #fff; }
.home-redesign .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.home-redesign .btn-outline-light:hover,
.home-redesign .btn-outline-light:focus { background: #fff; color: #4a2f14; }
.home-redesign .btn-gold { background: #c99a45; color: #fff; border-color: #c99a45; }
.home-redesign .btn-gold:hover,
.home-redesign .btn-gold:focus { background: #b8862f; color: #fff; border-color: #b8862f; }

/* ---------- Hero ---------- */
.home-redesign .hero {
  background: #f4efe6;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(0,0,0,0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 64px 0 80px;
}
.home-redesign .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-redesign .hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.home-redesign .badge {
  background: #efd9b6;
  color: #6b4a2a;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.home-redesign .badge i { color: #b98a4f; }
.home-redesign .hero-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #14100c;
  margin-bottom: 24px;
}
.home-redesign .hero-title .accent { color: #6b4a2a; }
.home-redesign .hero-sub {
  font-size: 17px;
  color: #6d6355;
  max-width: 560px;
  margin-bottom: 40px;
}
.home-redesign .hero-ctas { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.home-redesign .hero-since {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 4px;
  flex-wrap: wrap;
}
.home-redesign .since-label {
  font-size: 26px;
  font-weight: 800;
  color: #14100c;
  letter-spacing: 0.5px;
}
.home-redesign .since-sep { color: #b98a4f; font-size: 22px; line-height: 1; }
.home-redesign .since-sub {
  font-size: 15px;
  color: #6d6355;
  font-weight: 500;
}

.home-redesign .hero-right { position: relative; }
.home-redesign .hero-image {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.home-redesign .hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.home-redesign .record-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #efd9b6;
  padding: 14px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.home-redesign .record-card i { color: #b98a4f; font-size: 22px; }
.home-redesign .record-title { font-weight: 700; color: #6b4a2a; font-size: 17px; line-height: 1.2; }
.home-redesign .record-sub { font-size: 13px; color: #8a7758; margin-top: 2px; }

/* ---------- Legacy / Camilsons Group ---------- */
.home-redesign .legacy {
  background: linear-gradient(180deg, #4a2f14 0%, #3d2510 100%);
  color: #fff;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.home-redesign .legacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 24px);
  pointer-events: none;
}
.home-redesign .legacy > .container { position: relative; z-index: 1; }

.home-redesign .legacy-eyebrow {
  text-align: center;
  color: #d4c4a8;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.home-redesign .legacy-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.home-redesign .legacy-sub {
  text-align: center;
  color: #d4c4a8;
  font-size: 16px;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 60px;
}
.home-redesign .legacy-sub strong { color: #f2e2c1; font-weight: 600; }

.home-redesign .legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.home-redesign .legacy-media { position: relative; }
.home-redesign .carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  aspect-ratio: 4/3;
  background: #2a1a08;
}
.home-redesign .carousel-track { position: absolute; inset: 0; }
.home-redesign .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 4s ease;
}
.home-redesign .carousel-slide.active { opacity: 1; transform: scale(1); }
.home-redesign .carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.home-redesign .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.home-redesign .carousel-arrow:hover { background: rgba(0,0,0,0.65); }
.home-redesign .carousel-arrow.prev { left: 14px; }
.home-redesign .carousel-arrow.next { right: 14px; }

.home-redesign .view-awards-pill {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  background: rgba(20,10,4,0.85);
  color: #fff;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(239,217,182,0.35);
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: transform .2s, background .2s;
}
.home-redesign .view-awards-pill i { color: #d4a55a; }
.home-redesign .view-awards-pill:hover {
  background: #14100c;
  color: #fff;
  transform: translateX(-50%) translateY(-2px);
}

.home-redesign .carousel-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.home-redesign .carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.home-redesign .carousel-dot.active { background: #efd9b6; width: 22px; border-radius: 4px; }

.home-redesign .legacy-caption {
  text-align: center;
  color: #c8b993;
  font-size: 13px;
  font-style: italic;
  margin-top: 18px;
}

.home-redesign .legacy-copy p {
  color: #e6d6b6;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: justify;
}
.home-redesign .legacy-copy p:last-child { margin-bottom: 0; }

.home-redesign .sister-label {
  text-align: center;
  color: #e6d6b6;
  font-size: 15px;
  margin: 30px 0 22px;
}
.home-redesign .sisters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.home-redesign .sister-pill {
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 14px;
  color: #efe0c2;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background .2s, color .2s;
}
.home-redesign .sister-pill:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* ---------- Common section ---------- */
.home-redesign .section-eyebrow {
  text-align: center;
  color: #b98a4f;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 14px;
}
.home-redesign .section-eyebrow.gold { color: #c99a45; }
.home-redesign .section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #14100c;
  margin-bottom: 18px;
}
.home-redesign .section-sub {
  text-align: center;
  color: #6d6355;
  font-size: 16px;
  max-width: 780px;
  margin: 0 auto 60px;
}

/* ---------- Who We Serve ---------- */
.home-redesign .who { background: #faf6ee; padding: 90px 0; }
.home-redesign .who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.home-redesign .who-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform .2s, box-shadow .2s;
}
.home-redesign .who-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.home-redesign .who-ic {
  width: 54px; height: 54px;
  background: #efe4d1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.home-redesign .who-ic i { color: #6b4a2a; font-size: 20px; }
.home-redesign .who-card h3 { font-size: 20px; font-weight: 700; color: #14100c; margin-bottom: 12px; }
.home-redesign .who-card p { color: #6d6355; font-size: 14px; line-height: 1.5; margin-bottom: 22px; }
.home-redesign .explore-link {
  color: #4a2f14;
  font-weight: 600;
  font-size: 14px;
}
.home-redesign .explore-link:hover { text-decoration: underline; color: #4a2f14; }

/* ---------- Products ---------- */
.home-redesign .products { background: #faf6ee; padding: 60px 0 100px; }
.home-redesign .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.home-redesign .product-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.home-redesign .product-card.premium { background: #4a2f14; color: #fff; }
.home-redesign .premium-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #efd9b6;
  color: #6b4a2a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
}
.home-redesign .product-ic {
  width: 56px; height: 56px;
  background: #efe4d1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.home-redesign .product-ic i { color: #6b4a2a; font-size: 22px; }
.home-redesign .product-ic.light { background: #efe4d1; }
.home-redesign .product-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: inherit; }
.home-redesign .product-sub { color: #6d6355; font-size: 15px; margin-bottom: 20px; }
.home-redesign .product-card.premium .product-sub { color: #d4c4a8; }
.home-redesign .product-card > p { color: #6d6355; font-size: 14px; margin-bottom: 26px; line-height: 1.55; }
.home-redesign .product-card.premium > p { color: #d4c4a8; }
.home-redesign .price-pill {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}
.home-redesign .price-pill.green { background: #2f6a3b; color: #fff; }
.home-redesign .price-pill.cream { background: #efd9b6; color: #6b4a2a; }
.home-redesign .view-link { color: #14100c; font-weight: 600; font-size: 14px; }
.home-redesign .view-link.light { color: #efe4d1; }
.home-redesign .view-link:hover { text-decoration: underline; }

.home-redesign .products-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Testimonials ---------- */
.home-redesign .testimonials { background: #faf6ee; padding: 90px 0; }
.home-redesign .test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.home-redesign .test-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 34px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.home-redesign .stars { color: #d4a55a; margin-bottom: 20px; font-size: 15px; letter-spacing: 2px; }
.home-redesign .test-quote {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #efd9b6;
  font-size: 32px;
}
.home-redesign .test-body {
  color: #4a3f2d;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.home-redesign .test-author { display: flex; align-items: center; gap: 16px; }
.home-redesign .avatar {
  width: 50px; height: 50px;
  background: #efe4d1;
  color: #6b4a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.home-redesign .a-name { font-weight: 700; color: #6b4a2a; font-size: 15px; }
.home-redesign .a-role { color: #8a7758; font-size: 14px; margin-top: 2px; }

/* ---------- Portfolio ---------- */
.home-redesign .portfolio { background: #faf6ee; padding: 60px 0 100px; }
.home-redesign .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.home-redesign .p-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.home-redesign .p-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.home-redesign .p-item:hover img { transform: scale(1.05); }
.home-redesign .p-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(74,47,20,0.85);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
}
.home-redesign .portfolio-cta { text-align: center; }

/* ---------- CTA ---------- */
.home-redesign .cta {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 20px),
    #4a2f14;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.home-redesign .cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 22px;
  color: #fff;
}
.home-redesign .cta p {
  color: #e6d6b6;
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 40px;
}
.home-redesign .cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.home-redesign .cta-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: #efe4d1;
  font-size: 15px;
  flex-wrap: wrap;
}
.home-redesign .cta-meta i { color: #d4a55a; margin-right: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .home-redesign .who-grid { grid-template-columns: repeat(3, 1fr); }
  .home-redesign .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .home-redesign .hero-grid { grid-template-columns: 1fr; }
  .home-redesign .hero-image img { height: 360px; }
  .home-redesign .legacy-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-redesign .test-grid { grid-template-columns: 1fr; }
  .home-redesign .portfolio-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .home-redesign .who-grid { grid-template-columns: 1fr; }
  .home-redesign .products-grid { grid-template-columns: 1fr; }
  .home-redesign .portfolio-grid { grid-template-columns: 1fr; }
  .home-redesign .container { padding: 0 18px; }
  .home-redesign .hero { padding: 40px 0 56px; }
  .home-redesign .hero-image img { height: 280px; }
  .home-redesign .record-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }
  .home-redesign .legacy,
  .home-redesign .who,
  .home-redesign .testimonials,
  .home-redesign .cta { padding: 56px 0; }
  .home-redesign .products,
  .home-redesign .portfolio { padding: 40px 0 64px; }
  .home-redesign .view-awards-pill { padding: 10px 20px; font-size: 13px; bottom: 44px; }
  .home-redesign .hero-ctas .btn,
  .home-redesign .products-cta .btn,
  .home-redesign .cta-actions .btn { width: 100%; }
}
