/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 88px; padding-bottom: 64px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 4.2vw + 1rem, 4rem); line-height: 1.06; letter-spacing: -.01em; margin: 18px 0 22px; }
.hero h1 em { font-style: normal; color: var(--moss); }
.hero p.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; width: 100%; }

/* Hero Slideshow */
.hero-slideshow { position: relative; width: 100%; height: 100%; }
.hero-slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transform: scale(0.85); animation: popSlide 12s infinite; }
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 3s; }
.hero-slideshow img:nth-child(3) { animation-delay: 6s; }
.hero-slideshow img:nth-child(4) { animation-delay: 9s; }
@keyframes popSlide {
  0% { opacity: 0; transform: scale(0.85); }
  5% { opacity: 1; transform: scale(1); }
  25% { opacity: 1; transform: scale(1.05); }
  30% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

@media (max-width:900px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-art { order: -1; width: 100%; max-width: 380px; margin-inline: auto; aspect-ratio: 1/1; min-height: 250px; }
  .hero p.lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
}

/* ---------- Stats ---------- */
.stats { 
  background: var(--cream); 
  padding: 80px 0; 
  overflow: hidden;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.stats-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Add a subtle floating animation to the PNG you add later */
.floating-stat-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.stats-grid { 
  display: flex;
  flex-direction: column;
  gap: 48px; 
}

.stat { 
  text-align: left; 
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(63, 91, 55, 0.15); /* Subtle moss-green line connecting them */
}

.stat b { 
  display: block; 
  font-family: var(--font-display); 
  font-size: clamp(2.2rem, 4vw, 3rem); 
  color: var(--moss); 
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat span { 
  font-size: 1.05rem; 
  color: var(--ink-soft); 
  font-weight: 500;
}

/* Stagger the animations so they slide in sequentially */
.delay-1 { transition-delay: 0s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.3s; }

/* Mobile View: Image moves to the top, numbers stack below without the line */
@media (max-width: 860px) { 
  .stats { padding: 64px 0; }
  .stats-container { grid-template-columns: 1fr; gap: 48px; }
  .stats-visual { order: -1; }
  
  .stats-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  
  .stat {
    text-align: center;
    padding-left: 0;
    border-left: none;
  }
  
  /* Remove animation delays on mobile so they all appear together nicely */
  .delay-2, .delay-3 { transition-delay: 0s; }
}

/* ---------- Product Categories ---------- */
.cat-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
}

.cat-card { 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 24px; /* Slightly reduced padding to make room for the image */
  background: var(--white); 
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; 
  display: flex;
  flex-direction: column;
}

.cat-card:hover { 
  box-shadow: var(--shadow-md); 
  transform: translateY(-4px); 
  border-color: var(--wheat); 
}

/* Beautifully blended image wrapper */
.cat-visual {
  width: 100%;
  aspect-ratio: 4 / 3; /* Creates a perfect wide rectangle */
  background: var(--cream); /* Soft background blends with the card */
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(63, 91, 55, 0.06); /* Extremely subtle moss border */
}

.cat-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes the image fill the entire space edge-to-edge */
  padding: 0; /* Removing padding so it touches the border */
  transition: transform 0.5s ease;
}

/* Elegant zoom effect when the card is hovered */
.cat-card:hover .cat-visual img {
  transform: scale(1.08);
}

.cat-card h3 { 
  font-size: 1.15rem; 
  margin-bottom: 10px; 
}

.cat-card p { 
  color: var(--ink-soft); 
  font-size: .92rem; 
  margin-bottom: 18px;
  flex-grow: 1; /* Pushes the button to the bottom so all buttons align perfectly */
}

.cat-link { 
  font-size: .85rem; 
  font-weight: 600; 
  color: var(--moss); 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  background: none; 
  border: none; 
  padding: 0; 
  font-family: inherit; 
  cursor: pointer; 
  align-self: flex-start;
}

.cat-link svg { 
  width: 14px; 
  height: 14px; 
  transition: transform .2s ease; 
}

.cat-card:hover .cat-link svg { 
  transform: translateX(3px); 
}

@media (max-width:980px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- Why Us ---------- */
.why { 
  background: var(--cream); 
}

.why-inner { 
  display: grid; 
  grid-template-columns: .85fr 1.15fr; 
  gap: 56px; 
  align-items: start; 
}

.why-copy h2 { 
  font-size: clamp(1.9rem,2.6vw+1rem,2.6rem); 
  margin-top: 14px; 
}

.why-copy p { 
  color: var(--ink-soft); 
  margin-top: 16px; 
  max-width: 42ch; 
}

/* New: Beautiful Image Frame */
.why-visual {
  margin-top: 40px;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: var(--white); /* Pops slightly off the cream background */
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.why-visual img {
  width: 100%;
  height: 100%;
  /* Use 'cover' for standard photos. Change to 'contain' if using floating transparent PNGs */
  object-fit: cover; 
  transition: transform 0.6s ease;
}

/* Gentle zoom effect on the image when hovering over the left column */
.why-copy:hover .why-visual img {
  transform: scale(1.04);
}

.why-list { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.why-item { 
  display: flex; 
  gap: 20px; 
  padding: 24px 0; 
  border-bottom: 1px solid var(--border); 
}

.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }

.why-num { 
  font-family: var(--font-mono); 
  color: var(--wheat); 
  background: var(--ink); 
  width: 34px; 
  height: 34px; 
  border-radius: 50%; 
  flex: none; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: .78rem; 
}

.why-item h3 { 
  font-size: 1.05rem; 
  margin-bottom: 6px; 
}

.why-item p { 
  color: var(--ink-soft); 
  font-size: .92rem; 
}

/* On mobile, this will nicely stack: Text -> Image -> List items */
@media (max-width:860px) { 
  .why-inner { grid-template-columns: 1fr; } 
  .why-visual { margin-top: 32px; }
}

/* ---------- Quality Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step { position: relative; border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; background: var(--white); transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--wheat); }
.process-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--moss); color: var(--moss); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; margin-bottom: 18px; }
.process-dot svg { width: 22px; height: 22px; }
.process-step-no { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--wheat); margin-bottom: 8px; font-weight: 600; }
.process-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-soft); font-size: .9rem; }
@media (max-width:860px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- CTA Band ---------- */
.cta-band { background: var(--ink); border-radius: 20px; padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.2), transparent 70%); }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem,2.4vw+1rem,2.2rem); max-width: 18ch; }
.cta-band p { color: #C9C2BA; margin-top: 10px; }

/* ---------- Find Us / Map ---------- */
.visit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: stretch; }
.visit-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.addr-icon { width: 38px; height: 38px; color: var(--moss); }
.visit-card address { font-style: normal; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.visit-card address br + strong { color: var(--ink); }
.visit-card .btn { align-self: flex-start; }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (max-width:860px) { .visit-grid { grid-template-columns: 1fr; } .map-embed, .map-embed iframe { min-height: 280px; } .visit-card .btn { align-self: center; } }