/* ============================================================
   Aush — main.css
   Component styles: Navigation, Header, Footer + utilities
   All design tokens defined in base.css
   ============================================================ */

/* ── Navigation Overlay ────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
  visibility: hidden;
}

.nav-overlay.is-open {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop */
.nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-overlay.is-open .nav-overlay__backdrop {
  opacity: 1;
}

/* Panel */
.nav-overlay__panel {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16) var(--space-12);
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
  will-change: transform;
}
.nav-overlay.is-open .nav-overlay__panel {
  transform: translateX(0);
}

/* Close button */
.nav-overlay__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.1);
  transition: color var(--duration-fast), border-color var(--duration-fast),
              transform var(--duration-base) var(--ease-out);
}
.nav-overlay__close:hover {
  color: var(--color-text-white);
  border-color: var(--color-accent);
  transform: rotate(90deg);
}

/* Brand in overlay */
.nav-overlay__brand {
  position: absolute;
  top: var(--space-6);
  left: var(--space-8);
  opacity: 0.4;
}
.nav-overlay__brand-text {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-white);
}
.nav-overlay__brand-dot { color: var(--color-accent); }

/* Nav list */
.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 600px;
}

/* Nav items — stagger via CSS custom property */
.nav-overlay__item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 60ms);
}
.nav-overlay.is-open .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

/* Nav link */
.nav-overlay__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: clamp(var(--text-base), 1.5vw, var(--text-xl));
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  color: rgba(255,255,255,.55);
  line-height: 1.2;
  padding: var(--space-1) 0;
  position: relative;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out);
}
.nav-overlay__link:hover,
.nav-overlay__link[aria-current="page"],
.nav-overlay__item.is-active .nav-overlay__link {
  color: var(--color-text-white);
}

/* Animated underline on nav link */
.nav-overlay__link-line {
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--color-accent);
  transition: width var(--duration-base) var(--ease-out);
}
.nav-overlay__link:hover .nav-overlay__link-line,
.nav-overlay__item.is-active .nav-overlay__link-line {
  width: 100%;
}

/* Active page accent */
.nav-overlay__item.is-active .nav-overlay__link {
  color: var(--color-accent);
}

/* Chevron on parent link */
.nav-overlay__chevron {
  margin-left: auto;
  transition: transform var(--duration-base) var(--ease-out);
  flex-shrink: 0;
}
.nav-overlay__link--parent[aria-expanded="true"] .nav-overlay__chevron {
  transform: rotate(180deg);
}

/* Submenu */
.nav-overlay__submenu {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3) 0 var(--space-3) var(--space-6);
  border-left: 1px solid rgba(255,255,255,.1);
  margin-left: var(--space-2);
  margin-top: var(--space-2);
}
.nav-overlay__submenu[hidden] { display: none; }

.nav-overlay__sublink {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.45);
  padding: var(--space-1) 0;
  transition: color var(--duration-fast);
}
.nav-overlay__sublink:hover { color: var(--color-accent); }

/* Overlay footer */
.nav-overlay__footer {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-12);
  right: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out) 400ms;
}
.nav-overlay.is-open .nav-overlay__footer { opacity: 1; }

.nav-overlay__footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.nav-overlay__footer-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}
.nav-overlay__footer-link:hover { color: var(--color-accent); }

.nav-overlay__social {
  display: flex;
  gap: var(--space-4);
}
.nav-overlay__social-link {
  color: var(--color-text-muted);
  transition: color var(--duration-fast), transform var(--duration-fast);
}
.nav-overlay__social-link:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
  padding-block: var(--space-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: var(--space-12);
}

/* Brand column */
.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-5);
}
.footer-logo__wordmark {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-white);
}
.footer-logo__dot { color: var(--color-accent); }

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  max-width: 28ch;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}
.footer-social__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  transition: color var(--duration-fast), border-color var(--duration-fast),
              transform var(--duration-fast);
}
.footer-social__link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Footer column headings */
.footer-col__heading {
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}
.footer-col__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

/* Footer links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}
.footer-links__link:hover {
  color: var(--color-accent);
  padding-left: var(--space-2);
}

/* Footer address */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--color-text-muted); transition: color var(--duration-fast); }
.footer-contact-item a:hover { color: var(--color-accent); }

/* Newsletter */
.footer-newsletter__label {
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.footer-newsletter__field {
  display: flex;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}
.footer-newsletter__field:focus-within {
  border-color: var(--color-accent);
}
.footer-newsletter__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-size: var(--text-sm);
  outline: none;
}
.footer-newsletter__input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter__btn {
  padding: var(--space-3) var(--space-4);
  background: var(--color-accent);
  color: var(--color-text-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background var(--duration-fast);
}
.footer-newsletter__btn:hover { background: var(--color-accent-dark); }

/* Footer bottom bar */
.footer-bottom {
  padding-block: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.footer-legal__link {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}
.footer-legal__link:hover { color: var(--color-accent); }
.footer-legal__sep { color: rgba(255,255,255,.2); }

/* ── Page Hero (shared base) ──────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 100vh;    /* fallback: older Android/iOS */
  min-height: 100dvh;   /* dynamic viewport — hides with browser chrome */
  min-height: 100svh;   /* small viewport — stable, no chrome shift */
  display: flex;
  align-items: center;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

/* Critical: picture must be block + full size so img fills the hero */
.page-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: brightness(1.18) contrast(1.12);
  transition: opacity .4s ease;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,.85) 0%,
    rgba(10,10,10,.5)  50%,
    rgba(10,10,10,.3)  100%
  );
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-32);
}

.page-hero__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .6s var(--ease-out) .2s forwards;
}

.page-hero__title {
  font-size: clamp(var(--text-2xl), 5.5vw, var(--text-5xl));
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-white);
  line-height: var(--leading-tight);
  max-width: 16ch;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s var(--ease-out) .35s forwards;
}

.page-hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,.65);
  max-width: 48ch;
  line-height: var(--leading-loose);
  margin-top: var(--space-5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s var(--ease-out) .5s forwards;
}

.page-hero__actions {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s var(--ease-out) .65s forwards;
}

/* ── Scroll indicator ─────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,.4);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

/* ── Home Hero: bottom-anchored, centered, smaller text ─── */

/* Push content block to the bottom of the full-viewport section */
.home-hero {
  align-items: flex-end;
}

/* Vignette overlay — lighter centre, darker bottom for text legibility */
.home-hero .page-hero__overlay {
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.32) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.04) 35%,
      rgba(0,0,0,.04) 60%,
      rgba(0,0,0,.55) 100%
    );
}

/* Bottom-anchored, centered block */
.home-hero .page-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding-top: var(--space-6);
  /* sit above the scroll-indicator (approx 100px tall at bottom) */
  padding-bottom: calc(var(--space-16) + 96px);
}

/* Smaller title for home hero */
.home-hero .page-hero__title {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  max-width: 22ch;
  margin-inline: auto;
}

/* Smaller subtitle */
.home-hero .page-hero__subtitle {
  font-size: var(--text-sm);
  max-width: 52ch;
  margin-top: var(--space-3);
  margin-inline: auto;
}

/* Tighter action row */
.home-hero .page-hero__actions {
  justify-content: center;
  margin-top: var(--space-6);
}

/* Slow Ken Burns zoom on the hero background image */
.home-hero .page-hero__bg img {
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1);    }
  to   { transform: scale(1.07); }
}

/* ── Section: Category Grid ───────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.category-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}
.category-card:hover .category-card__img {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
  transition: background var(--duration-base);
}
.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.25) 60%);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-6);
  transform: translateY(var(--space-4));
  transition: transform var(--duration-base) var(--ease-out);
}
.category-card:hover .category-card__content {
  transform: translateY(0);
}

.category-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-text-white);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-2);
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-base), transform var(--duration-base);
}
.category-card:hover .category-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section: Product Cards ───────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.product-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-light);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.product-card__category {
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.product-card__name {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
  line-height: var(--leading-snug);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
}

/* ── Stats Counter Section ────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
  padding: var(--space-8);
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-item:last-child::after { display: none; }

.stat-item__number {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--font-bold);
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-white);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }

.blog-card__body { padding: var(--space-5) var(--space-6) var(--space-6); }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.blog-card__category {
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
}

.blog-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.blog-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
  transition: color var(--duration-fast);
}
.blog-card:hover .blog-card__title { color: var(--color-accent); }

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  color: var(--color-accent);
  margin-top: var(--space-4);
  transition: gap var(--duration-fast);
}
.blog-card:hover .blog-card__readmore { gap: var(--space-3); }

/* ── Newsletter CTA Section ───────────────────────────────── */
.newsletter-section {
  padding-block: var(--space-24);
  background: var(--color-bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: var(--space-8) auto 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}
.newsletter-form:focus-within { border-color: var(--color-accent); }

.newsletter-form__input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-size: var(--text-base);
  outline: none;
}
.newsletter-form__input::placeholder { color: rgba(255,255,255,.35); }

.newsletter-form__btn {
  padding: var(--space-4) var(--space-6);
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration-fast);
}
.newsletter-form__btn:hover { background: var(--color-accent-dark); }

/* ── Split section (About teaser, etc.) ──────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-section__image {
  position: relative;
  overflow: hidden;
}
.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}
.split-section__image:hover img { transform: scale(1.04); }

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-20) var(--space-16);
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}

.pagination__btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}
.pagination__btn:hover,
.pagination__btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-dark);
}
.pagination__btn.is-active { font-weight: var(--font-bold); }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: var(--text-md);
  font-weight: var(--font-medium);
  color: var(--color-text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--space-4);
  transition: color var(--duration-fast);
}
.faq-question:hover { color: var(--color-accent); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base);
}
.faq-icon::before { width: 100%; height: 1.5px; top: 50%; transform: translateY(-50%); }
.faq-icon::after  { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--duration-slow) var(--ease-out),
              padding var(--duration-base);
}
.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: var(--space-5);
}
.faq-answer p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--space-12);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-12);
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-12) - 5px);
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg-dark);
}

.timeline__year {
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.timeline__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-text-white);
  margin-bottom: var(--space-3);
}

.timeline__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  max-width: 50ch;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent), rgba(201,169,110,.2));
}

.process-step {
  text-align: center;
  padding-top: var(--space-6);
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-size: var(--text-base);
  font-weight: var(--font-semi);
  color: var(--color-text-white);
  margin-bottom: var(--space-2);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* ── Alert / Flash messages ──────────────────────────────── */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.alert--success { background: rgba(34,197,94,.1); color: var(--color-success); border: 1px solid rgba(34,197,94,.2); }
.alert--error   { background: rgba(239,68,68,.1);  color: var(--color-error);   border: 1px solid rgba(239,68,68,.2); }

/* ═══════════════════════════════════════════════════════════
   Home Product-Type Hero Sections
   ═══════════════════════════════════════════════════════════ */
.home-cat-hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.home-cat-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-cat-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-cat-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  transition: transform 0.8s ease;
}

.home-cat-hero:hover .home-cat-hero__bg img {
  transform: scale(1.03);
}

/* Brighter variant — kitchen section */
.home-cat-hero--bright .home-cat-hero__bg img {
  opacity: 0.85;
}
.home-cat-hero--bright .home-cat-hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.02) 0%,
    rgba(10,10,10,0.12) 40%,
    rgba(10,10,10,0.65) 100%
  );
}

.home-cat-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.06) 0%,
    rgba(10,10,10,0.22) 40%,
    rgba(10,10,10,0.80) 100%
  );
}

.home-cat-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  padding-bottom: calc(var(--space-20) + 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-cat-hero__content .section-tag {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

.home-cat-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5.5vw, var(--text-5xl));
  font-weight: var(--font-semi);
  color: var(--color-text-light);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
  max-width: 18ch;
}

.home-cat-hero__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  line-height: 1.7;
}

/* Extra-smooth reveal for home product section text */
.home-cat-hero__content .reveal {
  transition-duration: 900ms;
  transition-delay: calc(var(--stagger, 0) * 140ms);
}

.home-cat-hero__content .reveal.fade-up {
  transform: translateY(72px);
}

/* Extra-smooth reveal for brand statement */
.home-hero .page-hero__content .reveal {
  transition-duration: 900ms;
  transition-delay: calc(var(--stagger, 0) * 140ms);
}

.home-hero .page-hero__content .reveal.fade-up {
  transform: translateY(72px);
}

/* ═══════════════════════════════════════════════════════════
   Product Page FAQ Section
   ═══════════════════════════════════════════════════════════ */
.product-faq {
  background: var(--color-bg-dark);
  padding-block: var(--space-20);
}

.product-faq .section-tag  { color: var(--color-accent); margin-bottom: var(--space-3); }
.product-faq .section-title { color: var(--color-text-light); margin-bottom: var(--space-12); }

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: border-color var(--duration-base) var(--ease-out);
}

.faq-item[open],
.faq-item:hover { border-color: rgba(180,145,80,0.45); }

.faq-item__q {
  list-style: none;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-semi);
  color: var(--color-text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  user-select: none;
}

.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker               { display: none; }

.faq-item__q::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-out);
  line-height: 1;
}

.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }

.faq-item__a {
  padding: var(--space-4) var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Sticky WhatsApp FAB ──────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.36);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════
   Kitchen Showcase (product-kitchen.php)
   ═══════════════════════════════════════════════════════════ */

/* Grid: 2 columns, last card spans full width if count is odd */
.kitchen-showcase {
  background: var(--color-bg-dark);
}

.kitchen-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* Each card is a tall panel with a background image */
.ksc-card {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Last card spans both columns when there's an odd total */
.ksc-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  height: 60vh;
}

/* Background image */
.ksc-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ksc-card__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ksc-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Natural image rendering — no artificial dimming */
  filter: brightness(1.05) contrast(1.08) saturate(1.05);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.ksc-card:hover .ksc-card__bg img {
  transform: scale(1.04);
  filter: brightness(1.1) contrast(1.12) saturate(1.08);
}

/* Hindware-style: fully clear at top, dark only at bottom third for text legibility */
.ksc-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.00) 52%,
    rgba(0,0,0,0.55) 78%,
    rgba(0,0,0,0.80) 100%
  );
}

/* Text block — bottom of card */
.ksc-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-10) var(--space-10) var(--space-12);
}

.ksc-card__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.ksc-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 44ch;
}

/* ═══════════════════════════════════════════════════════════
   Legal Pages (privacy-policy, terms, sitemap)
   ═══════════════════════════════════════════════════════════ */
.legal-page__header {
  background: var(--color-bg-dark);
  padding-block: var(--space-20) var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.legal-page__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--font-bold);
  color: var(--color-text-white);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.legal-page__meta {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.legal-page__body {
  background: var(--color-bg-light);
  padding-block: var(--space-16) var(--space-24);
}

/* ── Prose content ─────────────────────────────────────── */
.legal-content {
  max-width: 780px;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-content p  { margin-bottom: var(--space-5); }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-semi);
  color: var(--color-text-dark);
  letter-spacing: var(--tracking-tight);
  margin-top: var(--space-10);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.legal-content ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}

.legal-content ul li { margin-bottom: var(--space-2); }

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover { opacity: 0.8; }

/* ── Sitemap grid ──────────────────────────────────────── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-10);
  padding-top: var(--space-4);
}

.sitemap-section__heading {
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-links li { margin-bottom: var(--space-2); font-size: var(--text-sm); color: var(--color-text-muted); }

.sitemap-links a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.sitemap-links a:hover { color: var(--color-accent); }

.sitemap-links ul {
  list-style: disc;
  padding-left: var(--space-5);
  margin-top: var(--space-2);
}

.sitemap-meta {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-left: var(--space-2);
  background: var(--color-bg-muted, #f0ede8);
  padding: 1px 6px;
  border-radius: 3px;
}
