/* ============================================
   HOME PAGE STYLES
============================================ */

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh; /* svh = small viewport height — avoids mobile browser chrome issues */
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s ease;
  transform: scale(1.05);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 61, 43, 0.82) 0%,
    rgba(26, 61, 43, 0.48) 50%,
    rgba(26, 61, 43, 0.28) 100%
  );
  z-index: 1;
}

/* 
  Hero slide backgrounds — replace the gradient with your real image:
  background: url('assets/images/hero-slide-1.jpg') center/cover no-repeat, <gradient>;
  The gradient below acts as a rich fallback when images are missing.
*/
.hero-slide-1 {
  background:
    url('/assets/images/hero-slide-1.jpg') center/cover no-repeat,
    url('/assets/images/hero-slide-1.png') center/cover no-repeat,
    linear-gradient(135deg, #0e2419 0%, #1a3d2b 35%, #2d5a3d 65%, #3d7a52 100%);
}
.hero-slide-2 {
  background:
    url('/assets/images/hero-slide-2.jpg') center/cover no-repeat,
    url('/assets/images/hero-slide-2.png') center/cover no-repeat,
    linear-gradient(150deg, #2b1a0e 0%, #5c3d22 35%, #8b5e3c 65%, #c9a84c 100%);
}
.hero-slide-3 {
  background:
    url('/assets/images/hero-slide-3.jpg') center/cover no-repeat,
    url('/assets/images/hero-slide-3.png') center/cover no-repeat,
    linear-gradient(120deg, #1a2b0e 0%, #2d5a1a 35%, #3d7a2d 65%, #1a3d2b 100%);
}

/* Decorative pattern overlay when no image is present — makes gradients look intentional */
.hero-slide-1::before,
.hero-slide-2::before,
.hero-slide-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 45%);
  z-index: 0;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: calc(var(--nav-height) + 20px);
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-eyebrow-line {
  width: 50px; height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.5s both;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(250, 246, 238, 0.8);
  font-style: italic;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.9s both;
}

/* Hero Stats bar */
.hero-stats {
  position: absolute;
  bottom: -60px; left: 0; right: 0;
  z-index: 3;
  background: rgba(26, 61, 43, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--gold);
}

.stat-item {
  padding: 28px 0;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  animation: fadeInUp 0.8s ease calc(1.1s + var(--delay, 0s)) both;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
}

/* Carousel dots */
.carousel-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Carousel arrows */
.carousel-prev, .carousel-next {
  position: absolute;
  bottom: 100px;
  z-index: 3;
  width: 48px; height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-prev { right: 100px; }
.carousel-next { right: 40px; }

.carousel-prev:hover, .carousel-next:hover {
  background: var(--gold);
  color: var(--forest);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 40px;
  bottom: 90px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.5);
  writing-mode: vertical-rl;
}

.scroll-indicator-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { height: 0; opacity: 0; }
  50% { height: 60px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}

/* ---- HERITAGE STRIP ---- */
.heritage-strip {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  padding: 20px 0;
  overflow: hidden;
}

.heritage-ticker {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.heritage-ticker-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.8);
}

.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ---- ABOUT PREVIEW ---- */
.about-preview {
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
}

.about-image-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-image-badge .year {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--forest);
  line-height: 1;
}

.about-image-badge .since {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--forest-mid);
  text-transform: uppercase;
}

.about-image-accent {
  position: absolute;
  top: 30px;
  left: -20px;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: rotateSlow 15s linear infinite;
}

@keyframes rotateSlow { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

.about-text { padding-right: 20px; }

.about-text .section-title { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 24px; }

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

.value-pill-icon { color: var(--gold); font-size: 1rem; }

/* ---- PRODUCTS PREVIEW ---- */
.products-section {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(26,61,43,0.05) 0%, transparent 50%);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-label { justify-content: center; }
.products-header .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 61, 43, 0.15);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img { transform: scale(1.06); }

.product-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img-placeholder { transform: scale(1.06); }

.product-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,61,43,0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-overlay-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.1s;
}

.product-card:hover .product-overlay-btn { transform: translateY(0); }

.product-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.product-card-body { padding: 24px; }

.product-card-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.product-price {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--forest);
}

.product-price-label {
  font-size: 0.65rem;
  color: var(--text-light);
  display: block;
}

.product-hsn {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ---- WHY CHOOSE US ---- */
.why-us {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at top right, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-left .section-label { justify-content: flex-start; }

.why-features {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateX(8px);
}

.feature-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.55);
  line-height: 1.6;
}

.why-right-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-text-wrap {
  position: relative;
  width: 320px; height: 320px;
}

.circular-text {
  animation: rotateSlow 20s linear infinite;
}

.center-emblem {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.center-emblem .big-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.center-emblem .big-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(201, 168, 76, 0.6);
  text-transform: uppercase;
}

.floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  background: rgba(250, 246, 238, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold-pale);
  text-transform: uppercase;
  white-space: nowrap;
  animation: floatBadge var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatBadge {
  0%,100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--cream);
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.author-info .location {
  font-size: 0.78rem;
  color: var(--text-light);
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
  letter-spacing: 2px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.cta-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
}

.cta-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(201, 168, 76, 0.8);
  margin-bottom: 48px;
  position: relative;
}

.cta-actions { display: flex; gap: 20px; justify-content: center; position: relative; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE — HOME PAGE
============================================ */

/* ---- Large Desktop (1400px+) ---- */
@media (min-width: 1400px) {
  .hero-content { padding: 0 60px; padding-top: calc(var(--nav-height) + 20px); }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

/* ---- Tablet Landscape / Small Desktop (1024px) ---- */
@media (max-width: 1024px) {
  .about-grid,
  .why-us-grid { grid-template-columns: 1fr; gap: 50px; }

  .about-image-wrap { max-width: 450px; margin: 0 auto; }
  .about-image-badge { bottom: -20px; right: -10px; width: 110px; height: 110px; }
  .about-image-badge .year { font-size: 1.2rem; }

  .about-text { padding-right: 0; text-align: center; }
  .about-values { max-width: 500px; margin: 32px auto; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .why-us-grid { text-align: center; }
  .why-us-left .section-label { justify-content: center; }
  .circular-text-wrap { width: 260px; height: 260px; }

  .carousel-prev { right: 110px; }
  .carousel-next { right: 50px; }
}

/* ---- Tablet Portrait (768px) ---- */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    height: 100svh;
    min-height: 560px;
    max-height: none;
  }

  .hero-content {
    padding: 0 24px;
    padding-top: calc(var(--nav-height) + 10px);
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hero-eyebrow { margin-bottom: 16px; }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Hero stats */
  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }

  .stat-item { padding: 20px 0; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.62rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(201, 168, 76, 0.15); }
  .stat-item:nth-child(4) { border-right: none; }

  /* Carousel controls */
  .carousel-dots { right: 12px; }
  .carousel-prev, .carousel-next { display: none; }
  .scroll-indicator { display: none; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .products-header { margin-bottom: 40px; }

  /* Testimonials */
  .testimonial-card { min-width: 280px; padding: 28px 24px; }
  .testimonial-text { font-size: 1rem; }

  /* About values */
  .about-values { grid-template-columns: 1fr; }

  /* Why us */
  .why-features { gap: 16px; }
  .feature-item { padding: 18px; }
  .circular-text-wrap { width: 220px; height: 220px; }
  .center-emblem .big-number { font-size: 2.5rem; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; gap: 14px; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Heritage strip */
  .ticker-item { font-size: 0.65rem; gap: 8px; }
}

/* ---- Mobile (480px) ---- */
@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 0 20px;
    padding-top: calc(var(--nav-height) + 8px);
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; }

  .hero-eyebrow span { font-size: 0.6rem; letter-spacing: 0.25em; }
  .hero-eyebrow-line { width: 30px; }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.3rem; }

  .products-grid { max-width: 100%; }
  .product-card-body { padding: 18px; }
  .product-card-name { font-size: 1.1rem; }

  .testimonial-card { min-width: calc(100vw - 48px); padding: 24px 20px; }

  .about-image-badge { width: 90px; height: 90px; bottom: -15px; right: -5px; }
  .about-image-badge .year { font-size: 1rem; }
  .about-image-accent { width: 60px; height: 60px; left: -10px; }

  .feature-item { flex-direction: column; gap: 14px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.1rem; }

  .circular-text-wrap { width: 180px; height: 180px; }
  .center-emblem .big-number { font-size: 2rem; }

  .cta-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .cta-subtitle { font-size: 1rem; margin-bottom: 32px; }

  .float-badge { font-size: 0.6rem; padding: 6px 12px; }
}

/* ---- Very small (360px) ---- */
@media (max-width: 360px) {
  .hero-title { font-size: 1.5rem; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-number { font-size: 1.1rem; }
  .stat-label { font-size: 0.55rem; letter-spacing: 0.1em; }
}