/* ============================================================
   KERAMIKANO — Corporate Ceramic Website Stylesheet
   Mobile-first · CSS Variables · Premium Design
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-off-white: #FAF5F0;
  --color-cream: #F0E4D8;
  --color-peach: #FAD9C8;
  --color-sage: #7A8F6E;
  --color-sage-light: #A8B89E;
  --color-clay: #C4785A;
  --color-warm-gray: #9E9E9E;
  --color-warm-gray-light: #C4BDB6;
  --color-terracotta: #B66A50;
  --color-terracotta-dark: #9A5842;
  --color-terracotta-light: #D4896F;
  --color-terracotta-pale: #F2D5C8;
  --color-brown: #4E342E;
  --color-brown-light: #6D4C41;
  --color-text: #3E2723;
  --color-text-muted: #795548;
  --color-border: rgba(78, 52, 46, 0.12);
  --color-border-strong: rgba(182, 106, 80, 0.28);
  --color-shadow: rgba(78, 52, 46, 0.08);
  --color-shadow-md: rgba(78, 52, 46, 0.14);
  --color-shadow-lg: rgba(78, 52, 46, 0.2);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 88px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(212, 137, 111, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(122, 143, 110, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(182, 106, 80, 0.1), transparent 55%),
    linear-gradient(180deg, #fff8f3 0%, var(--color-off-white) 40%, #f5ebe3 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(182, 106, 80, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==================== UTILITIES ==================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  max-width: 640px;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-xs);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light), #e8a88a, var(--color-terracotta));
  background-size: 200% 100%;
  animation: progressShimmer 3s linear infinite;
  z-index: 1001;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(182, 106, 80, 0.45);
}

/* ==================== NAVIGATION ==================== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
}

.header {
  width: 100%;
  background: rgba(255, 248, 243, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(78, 52, 46, 0.1);
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

.nav-wrapper.scrolled .header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 24px var(--color-shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1102;
  position: relative;
  flex-shrink: 0;
}

.nav__logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(380px, 82vw);
  object-fit: contain;
}

/* Mobile & tablet: always show header background so menu button is visible */
@media (max-width: 767px) {
  .header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px var(--color-shadow);
  }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1102;
  position: relative;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  pointer-events: none;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-out menu */
.nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  padding: calc(var(--header-height) + var(--space-md)) var(--space-md) var(--space-lg);
  box-shadow: -8px 0 32px var(--color-shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
}

.nav__menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav__menu li {
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.nav__menu li:last-child {
  border-bottom: none;
}

.nav__link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-brown);
  padding: 1rem 0.5rem;
  min-height: 48px;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(182, 106, 80, 0.15);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0.75rem;
  left: 0.5rem;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: calc(100% - 1rem);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-terracotta);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(78, 52, 46, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 1040;
  -webkit-tap-highlight-color: transparent;
}

.nav__overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-wrapper {
  z-index: 10000 !important;
}

/* Tablet & Desktop: inline navigation */
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__overlay {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    row-gap: var(--space-xs);
    min-height: var(--header-height);
    height: auto;
    padding: 0.5rem 0;
  }

  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem 1.25rem;
    overflow: visible;
  }

  .nav__menu li {
    border-bottom: none;
  }

  .nav__link {
    display: inline-block;
    font-size: 0.875rem;
    padding: var(--space-xs) 0;
    min-height: auto;
  }

  .nav__link::after {
    bottom: 0;
    left: 0;
  }

  .nav__link:hover::after,
  .nav__link.active::after {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .nav {
    flex-wrap: nowrap;
    height: var(--header-height);
    padding: 0;
  }

  .nav__menu {
    gap: var(--space-md);
  }

  .nav__link {
    font-size: 0.9375rem;
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-light) 50%, var(--color-terracotta) 100%);
  background-size: 200% 200%;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(182, 106, 80, 0.35);
}

.btn--primary:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(182, 106, 80, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--color-brown);
  border: 2px solid var(--color-brown);
}

.btn--outline:hover {
  background: var(--color-brown);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

/* Ripple Effect */
.btn--ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Submit Button Loading */
.btn--submit {
  width: 100%;
  min-height: 52px;
}

.btn--submit.loading .btn__text {
  opacity: 0;
}

.btn--submit.loading .btn__loader {
  opacity: 1;
}

.btn__loader {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==================== PLACEHOLDERS ==================== */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-off-white) 100%);
  border: 1px solid var(--color-border-strong);
  border-radius: inherit;
  color: var(--color-warm-gray);
  text-align: center;
  padding: var(--space-md);
}

.placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.placeholder span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.placeholder small {
  font-size: 0.75rem;
  color: var(--color-warm-gray);
}

.placeholder--hero {
  min-height: 320px;
  border-radius: var(--radius-lg);
}

.placeholder--factory {
  min-height: 280px;
  border-radius: var(--radius-lg);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-xl);
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(212, 137, 111, 0.35), transparent 60%),
    radial-gradient(ellipse 45% 40% at 10% 80%, rgba(122, 143, 110, 0.2), transparent 55%),
    linear-gradient(155deg, #fff0e8 0%, var(--color-peach) 30%, var(--color-cream) 55%, #fff8f4 100%);
  background-size: 400% 400%;
  animation: heroGradient 18s ease infinite;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-shapes::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(182, 106, 80, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.28;
  background: radial-gradient(circle at 30% 30%, var(--color-terracotta-light), var(--color-terracotta));
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -50px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 30%;
  animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -20px) rotate(5deg); }
  66% { transform: translate(-15px, 15px) rotate(-5deg); }
}

.hero__container {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  background: rgba(182, 106, 80, 0.12);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(182, 106, 80, 0.2);
  box-shadow: 0 2px 12px rgba(182, 106, 80, 0.12);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__visual {
  position: relative;
}

.hero__decor {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.hero__decor-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--color-terracotta);
  opacity: 0.2;
}

.hero__decor-shape--1 {
  width: 80px;
  height: 80px;
  top: 0;
  right: 10%;
  animation: floatDecor 6s ease-in-out infinite;
}

.hero__decor-shape--2 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 0;
  animation: floatDecor 8s ease-in-out infinite reverse;
}

.hero__decor-shape--3 {
  width: 35px;
  height: 35px;
  top: 50%;
  right: 0;
  animation: floatDecor 7s ease-in-out infinite;
}

@keyframes floatDecor {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px var(--color-shadow-lg);
  border: 4px solid var(--color-white);
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base);
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  line-height: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-slow);
}

.hero__image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.hero__image-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(78, 52, 46, 0.28);
}

.hero__image-frame:hover .hero__image {
  transform: scale(1.08);
}

.hero__image-frame:hover .hero__image-shine {
  animation: heroShine 0.75s ease forwards;
}

@keyframes heroShine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-terracotta), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .hero__image-wrap {
    aspect-ratio: 1 / 1;
    min-height: 480px;
  }
}

/* ==================== WHY CHOOSE US ==================== */
.why-us {
  background:
    radial-gradient(circle at 95% 10%, rgba(212, 137, 111, 0.14), transparent 40%),
    linear-gradient(180deg, #fff 0%, #fdf6f1 100%);
  position: relative;
  overflow: hidden;
}

.why-us__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.why-card {
  background: linear-gradient(145deg, var(--color-white) 0%, #fff9f5 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(182, 106, 80, 0.15);
  box-shadow: 0 8px 24px rgba(182, 106, 80, 0.08);
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.why-card:nth-child(1)::after { background: var(--color-terracotta); }
.why-card:nth-child(2)::after { background: var(--color-sage); }
.why-card:nth-child(3)::after { background: var(--color-clay); }
.why-card:nth-child(4)::after { background: var(--color-brown-light); }

.why-card:nth-child(1) .why-card__icon {
  background: linear-gradient(135deg, rgba(182, 106, 80, 0.2), rgba(212, 137, 111, 0.12));
  color: var(--color-terracotta-dark);
}

.why-card:nth-child(2) .why-card__icon {
  background: linear-gradient(135deg, rgba(122, 143, 110, 0.22), rgba(168, 184, 158, 0.12));
  color: var(--color-sage);
}

.why-card:nth-child(3) .why-card__icon {
  background: linear-gradient(135deg, rgba(196, 120, 90, 0.2), rgba(212, 137, 111, 0.1));
  color: var(--color-clay);
}

.why-card:nth-child(4) .why-card__icon {
  background: linear-gradient(135deg, rgba(109, 76, 65, 0.15), rgba(182, 106, 80, 0.1));
  color: var(--color-brown);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(182, 106, 80, 0.15);
  border-color: rgba(182, 106, 80, 0.2);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 106, 80, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-bounce);
}

.why-card__icon svg {
  width: 32px;
  height: 32px;
}

.why-card:hover .why-card__icon {
  transform: rotate(12deg) scale(1.05);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: var(--space-xs);
}

.why-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (min-width: 576px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-us__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== FEATURED PRODUCTS ==================== */
.products {
  background:
    linear-gradient(180deg, var(--color-cream) 0%, #f8ede4 50%, var(--color-peach) 100%);
  position: relative;
  overflow: hidden;
}

.products__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.product-card {
  background: linear-gradient(180deg, var(--color-white) 0%, #fff9f5 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(182, 106, 80, 0.12);
  box-shadow: 0 8px 28px rgba(182, 106, 80, 0.1);
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
}

.product-card:nth-child(1)::before { background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light)); }
.product-card:nth-child(2)::before { background: linear-gradient(90deg, var(--color-sage), var(--color-sage-light)); }
.product-card:nth-child(3)::before { background: linear-gradient(90deg, var(--color-clay), var(--color-terracotta-light)); }
.product-card:nth-child(4)::before { background: linear-gradient(90deg, var(--color-brown), var(--color-brown-light)); }

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px var(--color-shadow-md);
  border-color: var(--color-border-strong);
}

.product-card__image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  line-height: 0;
  display: block;
  color: inherit;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__body {
  padding: var(--space-md);
  position: relative;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: var(--space-xs);
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.product-card__btn {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-terracotta);
  padding: 0.5rem 0;
  position: relative;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--transition-base),
              opacity var(--transition-base),
              color var(--transition-base);
}

.product-card__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width var(--transition-base);
}

.product-card:hover .product-card__btn {
  transform: translateY(0);
  opacity: 1;
}

.product-card__btn:hover::after {
  width: 100%;
}

@media (min-width: 576px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== OUR FACTORY ==================== */
.about {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(122, 143, 110, 0.15), transparent 60%),
    linear-gradient(135deg, #ede4d8 0%, var(--color-cream) 40%, #f5ebe3 100%);
  position: relative;
  overflow: hidden;
}

.factory-page__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.factory-page__header-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-sm);
  color: var(--color-brown);
  opacity: 0.7;
}

.factory-page__header-icon svg {
  width: 100%;
  height: 100%;
}

.factory-page__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.factory-page__label-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-terracotta);
  opacity: 0.6;
}

.factory-page__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.factory-page__divider {
  width: min(200px, 50%);
  margin-inline: auto;
  color: var(--color-brown);
  opacity: 0.35;
}

.factory-page__divider svg {
  width: 100%;
  height: 12px;
  display: block;
}

.factory-page__layout {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.factory-page__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.factory-page__video-wrap {
  position: relative;
  width: clamp(260px, 88vw, 340px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-terracotta-dark);
  box-shadow: 0 20px 56px rgba(78, 52, 46, 0.22);
  border: 4px solid var(--color-white);
}

.factory-page__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--color-terracotta-dark);
}

.factory-page__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.factory-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  border-radius: 22px 18px 20px 24px / 20px 24px 22px 18px;
  border: 1px solid rgba(78, 52, 46, 0.08);
  box-shadow: 0 6px 24px rgba(78, 52, 46, 0.07);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.factory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(78, 52, 46, 0.1);
}

.factory-card__icon {
  flex-shrink: 0;
}

.factory-card__blob {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
  color: var(--color-brown);
}

.factory-card__blob svg {
  width: 36px;
  height: 36px;
}

.factory-card__blob--tan {
  background: #D4C4A8;
}

.factory-card__blob--sage {
  background: #A8B89E;
}

.factory-card__blob--terra {
  background: #C9957A;
}

.factory-card__divider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  min-height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(78, 52, 46, 0.15) 20%, rgba(78, 52, 46, 0.15) 80%, transparent);
  margin: 0.25rem 0;
}

.factory-card__text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

.factory-card__text strong {
  font-weight: 600;
  color: var(--color-terracotta);
}

@media (min-width: 992px) {
  .factory-page__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-2xl);
  }

  .factory-page__visual {
    min-height: 480px;
  }

  .factory-page__video-wrap {
    width: min(420px, 100%);
  }

  .factory-card {
    padding: var(--space-md) var(--space-xl);
  }

  .factory-card__text {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .factory-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .factory-card__divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    align-self: auto;
    background: linear-gradient(to right, transparent, rgba(78, 52, 46, 0.12) 20%, rgba(78, 52, 46, 0.12) 80%, transparent);
    margin: 0;
  }
}

/* Timeline */
.timeline {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
}

.timeline__track {
  display: none;
}

.timeline__items {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.timeline__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-terracotta);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline__item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px var(--color-shadow);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.timeline__dot {
  display: none;
}

.timeline__text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-brown);
}

@media (min-width: 768px) {
  .timeline__track {
    display: block;
    position: relative;
    height: 4px;
    background: var(--color-cream);
    border-radius: 4px;
    margin-bottom: var(--space-lg);
  }

  .timeline__line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: 4px;
    transition: width 1.5s ease;
  }

  .timeline__items {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }

  .timeline__item {
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: none;
    background: transparent;
    padding: 0;
    position: relative;
  }

  .timeline__item:hover {
    transform: translateY(-4px);
    box-shadow: none;
  }

  .timeline__dot {
    display: block;
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border: 3px solid var(--color-terracotta);
    border-radius: 50%;
    margin: var(--space-sm) 0;
    transition: transform var(--transition-bounce), background var(--transition-base);
  }

  .timeline__item:hover .timeline__dot {
    transform: scale(1.3);
    background: var(--color-terracotta);
  }
}

/* Vision & Mission */
.vm-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.vm-card {
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-light) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.vm-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(78, 52, 46, 0.3);
}

.vm-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-terracotta-light);
}

.vm-card__icon svg {
  width: 100%;
  height: 100%;
}

.vm-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.vm-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Statistics */
.stats-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--color-shadow);
}

.stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.stat-card--light {
  background: var(--color-white);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== OUR FACTORY ==================== */
.factory {
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 106, 80, 0.12), transparent 45%),
    linear-gradient(180deg, #fff 0%, #faf3ee 100%);
  position: relative;
  overflow: hidden;
}

.factory-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.factory-block {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.factory-block__image {
  width: 100%;
  max-width: 100%;
  justify-self: center;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
  padding: 0.5rem;
  box-sizing: border-box;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 4px solid var(--color-terracotta);
  box-shadow: 0 8px 28px var(--color-shadow-md);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.factory-block__image img {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: transform var(--transition-slow);
}

.factory-block__image:hover img {
  transform: scale(1.05);
}

.factory-block__image--float {
  animation: factoryFloat 6s ease-in-out infinite;
}

@keyframes factoryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.factory-block__image:hover {
  border-color: var(--color-terracotta-dark);
  box-shadow: 0 12px 36px var(--color-shadow-lg);
}

.factory-block__step {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-terracotta);
  margin-bottom: var(--space-xs);
}

.factory-block__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: var(--space-sm);
}

.factory-block__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

@media (min-width: 992px) {
  .factory-block {
    grid-template-columns: 1fr 1fr;
  }

  .factory-block--reverse .factory-block__image {
    order: 2;
    justify-self: center;
  }

  .factory-block--reverse .factory-block__content {
    order: 1;
  }
}

@media (max-width: 991px) {
  .factory-block__image {
    width: 100%;
    max-width: 100%;
  }
}

/* Production Process Timeline */
.process-timeline {
  background: linear-gradient(135deg, var(--color-brown) 0%, #5d4037 50%, var(--color-brown-light) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 16px 48px rgba(78, 52, 46, 0.28);
  border: 1px solid rgba(212, 137, 111, 0.2);
}

.process-timeline__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.process-timeline__wrapper {
  position: relative;
  padding: var(--space-md) 0;
}

.process-timeline__line {
  display: none;
}

.process-timeline__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.process-step__circle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(182, 106, 80, 0.35);
  transition: transform var(--transition-bounce);
}

.process-step:hover .process-step__circle {
  transform: scale(1.15);
}

.process-step__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 576px) {
  .process-timeline__steps {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 768px) {
  .process-timeline__line {
    display: block;
    position: absolute;
    top: calc(var(--space-md) + 22px);
    left: 8%;
    right: 8%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
  }

  .process-timeline__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--process-progress, 0%);
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: 3px;
    transition: width 1.5s ease;
  }
}

/* ==================== OUR CLIENTS ==================== */
.clients {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(78, 52, 46, 0.06), transparent 60%),
    linear-gradient(180deg, #f5ebe3 0%, var(--color-peach) 50%, #fff8f4 100%);
  position: relative;
  overflow: hidden;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.client-card {
  background: linear-gradient(145deg, var(--color-white) 0%, #fff9f5 100%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 0 6px 20px rgba(182, 106, 80, 0.1);
  border: 1px solid rgba(182, 106, 80, 0.1);
  cursor: pointer;
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base),
              background var(--transition-base),
              border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.client-card:nth-child(odd) {
  background: linear-gradient(145deg, #fff 0%, rgba(250, 217, 200, 0.35) 100%);
}

.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--color-terracotta);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--color-shadow-md);
  background: var(--color-off-white);
}

.client-card:hover::before {
  opacity: 1;
}

.client-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition-base),
              opacity var(--transition-base),
              transform var(--transition-base);
}

.client-card__logo span {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), border-color var(--transition-base);
}

.client-card:hover .client-card__logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-card:hover .client-card__logo span {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta-light);
}

/* Replace placeholder with real logo:
   .client-card__logo img { width: 100%; max-height: 60px; object-fit: contain; } */

@media (min-width: 768px) {
  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-grid--clients {
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-light) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.stats-grid--clients .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.stats-grid--clients .stat-card__number {
  color: var(--color-white);
}

.stats-grid--clients .stat-card__label {
  color: rgba(255, 255, 255, 0.75);
}

.stats-grid--clients .stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ==================== CONTACT US ==================== */
.contact {
  background:
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(182, 106, 80, 0.14), transparent 55%),
    linear-gradient(160deg, #fff 0%, #faf0ea 50%, var(--color-terracotta-pale) 100%);
  position: relative;
  overflow: hidden;
}

.contact .section__header {
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.contact .section__header .section__title::after {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.contact__grid {
  display: grid;
  gap: var(--space-xl);
  max-width: 560px;
  margin-inline: auto;
  justify-items: center;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.contact .info-card {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.contact .info-card:hover {
  transform: translateX(6px);
}

.info-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.info-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.info-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px var(--color-shadow);
  border-color: rgba(182, 106, 80, 0.2);
}

.info-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 106, 80, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-terracotta);
}

.info-card__icon svg {
  width: 22px;
  height: 22px;
}

.info-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-terracotta);
  margin-bottom: 0.25rem;
}

.info-card__text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(145deg, var(--color-white) 0%, #fff9f5 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 12px 40px rgba(182, 106, 80, 0.15);
  border: 2px solid rgba(182, 106, 80, 0.15);
}

.form-row {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  position: relative;
  margin-bottom: var(--space-md);
}

.form-input {
  width: 100%;
  padding: 1.125rem 1rem 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-base);
}

.form-input:focus {
  border-color: var(--color-terracotta);
  outline: none;
}

.form-input.error {
  border-color: #C62828;
}

.form-input--textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1.5rem;
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--color-warm-gray);
  pointer-events: none;
  transition: top var(--transition-base),
              font-size var(--transition-base),
              color var(--transition-base);
}

.form-input--textarea + .form-label {
  top: 1.25rem;
  transform: none;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 0.625rem;
  transform: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-terracotta);
}

.form-input--textarea:focus + .form-label,
.form-input--textarea:not(:placeholder-shown) + .form-label {
  top: 0.5rem;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #C62828;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(76, 175, 80, 0.1);
  border-radius: var(--radius-sm);
  color: #2E7D32;
}

.form-success.visible {
  display: flex;
}

.form-success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.form-success p {
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .contact__grid {
    max-width: 600px;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--color-brown);
  color: rgba(255, 255, 255, 0.85);
  padding-top: var(--space-xl);
}

.footer__grid {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.footer__logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  transition: background var(--transition-base), transform var(--transition-base);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: var(--color-terracotta);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__links ul li,
.footer__contact ul li {
  margin-bottom: 0.625rem;
}

.footer__links a {
  font-size: 0.9375rem;
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer__links a:hover {
  color: var(--color-terracotta-light);
  padding-left: 4px;
}

.footer__contact ul li {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) var(--space-md);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
  }
}

.footer__contact a {
  color: inherit;
  transition: color var(--transition-base);
}

.footer__contact a:hover {
  color: var(--color-terracotta-light);
}

.products-page__seo-index {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.products-page__seo-index-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: var(--space-sm);
}

.products-page__seo-index h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: var(--space-sm) 0 0.375rem;
}

.products-page__seo-index ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-sm);
}

.products-page__seo-index li img {
  display: none;
}

.faq__list {
  display: grid;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 0 2px 12px var(--color-shadow);
}

.faq__question {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.faq__answer {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-terracotta);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(182, 106, 80, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-base),
              visibility var(--transition-base),
              transform var(--transition-base),
              background var(--transition-base);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 2px;
}

/* ==================== NAV CTA BUTTON ==================== */
.nav__cta-item {
  border-bottom: none !important;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border) !important;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white) !important;
  background: var(--color-terracotta);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(182, 106, 80, 0.35);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base);
  min-height: 44px;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 106, 80, 0.45);
  color: var(--color-white) !important;
}

.nav__cta.active {
  background: var(--color-brown);
  box-shadow: 0 4px 14px rgba(78, 52, 46, 0.35);
}

@media (min-width: 768px) {
  .nav__cta-item {
    margin-top: 0;
    padding-top: 0;
    border-top: none !important;
    margin-left: 0.5rem;
  }

  .nav__cta {
    padding: 0.5rem 1.125rem;
    font-size: 0.8125rem;
    min-height: auto;
  }
}

@media (min-width: 992px) {
  .nav__cta {
    font-size: 0.875rem;
    padding: 0.5625rem 1.25rem;
  }
}

/* ==================== PRODUCTS GALLERY PAGE ==================== */
.products-page {
  background: var(--color-off-white);
  min-height: 100vh;
}

.products-page__banner {
  position: relative;
  margin-top: var(--header-height);
  padding: var(--space-xl) 0 calc(var(--space-xl) + 2.5rem);
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-light) 45%, var(--color-terracotta-dark) 100%);
  overflow: hidden;
}

.products-page__banner-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.products-page__shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.products-page__shape--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
  animation: floatShape 9s ease-in-out infinite;
}

.products-page__shape--2 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  left: -40px;
  animation: floatShape 11s ease-in-out infinite reverse;
}

.products-page__shape--3 {
  width: 100px;
  height: 100px;
  top: 35%;
  left: 18%;
  animation: floatDecor 7s ease-in-out infinite;
}

.products-page__banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.products-page__banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  max-width: 720px;
  margin: 0 auto;
}

.products-page__breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.products-page__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-base);
}

.products-page__breadcrumb a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.products-page__breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.65);
}

.products-page__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
  backdrop-filter: blur(6px);
}

.products-page__banner-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  opacity: 0.9;
  animation: floatDecor 6s ease-in-out infinite;
}

.products-page__banner-icon svg {
  width: 100%;
  height: 100%;
}

.products-page__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.products-page__subtitle {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto var(--space-sm);
}

.products-page__banner-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

.products-page__banner-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  color: var(--color-off-white);
  pointer-events: none;
}

.products-page__banner-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Stats strip */
.products-page__stats {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: var(--space-lg);
}

.products-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.products-page__stat {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px var(--color-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.products-page__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--color-shadow-md);
}

.products-page__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.products-page__stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.products-page__main {
  position: relative;
  padding: var(--space-lg) 0 var(--space-xl);
  overflow: hidden;
}

.products-page__main-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(182, 106, 80, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(78, 52, 46, 0.05) 0%, transparent 40%);
}

.products-page__main-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--color-terracotta);
  opacity: 0.04;
}

.products-page__main-shape--1 {
  width: 320px;
  height: 320px;
  top: 5%;
  right: -120px;
  animation: floatShape 14s ease-in-out infinite;
}

.products-page__main-shape--2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -80px;
  animation: floatShape 12s ease-in-out infinite reverse;
}

.products-page__intro {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}

.products-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-md);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.products-page__header .section__title {
  display: block;
  width: 100%;
}

.products-page__header .section__title::after {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.products-page__intro-desc {
  margin-top: var(--space-sm);
}

.products-page__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.products-page__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-brown);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.products-page__tag--active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(181, 98, 61, 0.35);
}

.products-page__tag--active svg {
  color: var(--color-white);
}

.products-page__tag svg {
  width: 16px;
  height: 16px;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.products-page__tag:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
  box-shadow: 0 6px 16px var(--color-shadow);
}

.products-page__features {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.products-page__feature {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px var(--color-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.products-page__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--color-shadow-md);
}

.products-page__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-xs);
  background: rgba(182, 106, 80, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-terracotta);
}

.products-page__feature-icon svg {
  width: 22px;
  height: 22px;
}

.products-page__feature-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 0.25rem;
}

.products-page__feature-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.products-page__gallery-panel {
  position: relative;
  z-index: 1;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 48px var(--color-shadow-md);
}

.products-page__gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px dashed var(--color-border);
}

.products-page__count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brown);
}

.products-page__gallery-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.products-page__gallery-hint svg {
  width: 15px;
  height: 15px;
  color: var(--color-terracotta);
}

/* CTA section */
.products-page__cta {
  position: relative;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-terracotta-dark) 100%);
  overflow: hidden;
}

.products-page__cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.products-page__cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.products-page__cta-content {
  max-width: 560px;
  margin: 0 auto;
}

.section__label--light {
  color: rgba(255, 255, 255, 0.85);
}

.products-page__cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin: var(--space-xs) 0 var(--space-sm);
}

.products-page__cta-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

.products-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.btn--outline-light {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-brown);
  border-color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.gallery-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-base),
              border-color var(--transition-base),
              opacity var(--transition-base);
}

.gallery-item--empty {
  pointer-events: none;
  cursor: default;
}

.gallery-item--empty:hover {
  transform: none;
  box-shadow: none;
}

.gallery-item--empty .gallery-item__overlay,
.gallery-item--empty .gallery-item__hint {
  display: none;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-strong);
  box-shadow: 0 16px 40px var(--color-shadow-md);
}

.gallery-item__image {
  aspect-ratio: 1;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.gallery-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-item__image img {
  transform: scale(1.08);
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: linear-gradient(145deg, var(--color-cream) 0%, var(--color-off-white) 100%);
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-item__placeholder {
  transform: scale(1.05);
}

.gallery-item__placeholder span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.gallery-item__placeholder small {
  font-size: 0.6875rem;
  color: var(--color-warm-gray);
}

.gallery-item__hint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.625rem var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.3;
  background: linear-gradient(to bottom, rgba(78, 52, 46, 0.88) 0%, rgba(78, 52, 46, 0.5) 65%, transparent 100%);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
}

.gallery-item:hover .gallery-item__hint {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(78, 52, 46, 0.92) 0%, rgba(78, 52, 46, 0.72) 55%, rgba(78, 52, 46, 0.35) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-sm);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity var(--transition-base), transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  opacity: 0;
  transform: translateY(24px) scale(0.88);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-item__info {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: galleryNamePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.gallery-item__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.gallery-item__category {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
}

@keyframes galleryNamePop {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.88);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pagination */
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding: var(--space-md) 0 0;
}

.gallery-pagination__category-hint {
  flex-basis: 100%;
  margin: 0.25rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-terracotta);
}

.products-page__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-lg);
  color: var(--color-warm-gray);
  font-size: 0.9375rem;
}

.products-page__gallery-panel .gallery-pagination {
  margin-top: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px dashed var(--color-border);
}

.gallery-pagination__btn {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base);
}

.gallery-pagination__btn:hover:not(:disabled):not(.active) {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

.gallery-pagination__btn.active {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
  box-shadow: 0 4px 12px rgba(182, 106, 80, 0.35);
}

.gallery-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery-pagination__ellipsis {
  padding: 0 0.25rem;
  color: var(--color-warm-gray);
  font-size: 0.875rem;
}

.gallery-pagination__arrow {
  border-radius: var(--radius-sm);
  min-width: 44px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(78, 52, 46, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 900px;
  width: 100%;
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
}

.lightbox.open .lightbox__content {
  transform: scale(1);
}

.lightbox__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--color-brown);
  aspect-ratio: 1;
  max-height: 80vh;
}

.lightbox__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  color: var(--color-white);
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.lightbox__caption-name {
  display: block;
}

.lightbox__caption-category {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-base);
}

.lightbox__close:hover {
  background: var(--color-terracotta);
}

.lightbox__close svg {
  width: 22px;
  height: 22px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition-base);
}

.lightbox__nav:hover {
  background: var(--color-terracotta);
}

.lightbox__nav--prev { left: -56px; }
.lightbox__nav--next { right: -56px; }

.lightbox__nav svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 576px) {
  .products-page__stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }

  .products-page__features {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .products-page__gallery-panel {
    padding: var(--space-lg);
  }

  .products-page__cta-inner {
    grid-template-columns: 1.2fr 1fr;
    text-align: left;
  }

  .products-page__cta-content {
    margin: 0;
  }

  .products-page__cta-actions {
    justify-content: flex-end;
    flex-direction: column;
    align-items: stretch;
  }

  .products-page__cta-actions .btn {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 767px) {
  .lightbox__nav--prev { left: 0; }
  .lightbox__nav--next { right: 0; }
  .lightbox__close { top: -44px; right: 0; }
}

/* ============================================================
   FINISHING TOUCHES — Ambient color, motion & polish
   ============================================================ */

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes progressShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

@keyframes labelShimmer {
  0%, 100% { box-shadow: 0 0 0 rgba(182, 106, 80, 0); }
  50% { box-shadow: 0 0 20px rgba(182, 106, 80, 0.25); }
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 106, 80, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(182, 106, 80, 0); }
}

@keyframes sectionLineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Floating ambient orbs (fixed, behind content) */
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.site-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbFloat var(--orb-dur, 20s) ease-in-out infinite;
  will-change: transform;
}

.site-bg__orb--1 {
  --orb-dur: 22s;
  width: 420px;
  height: 420px;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(212, 137, 111, 0.55), rgba(182, 106, 80, 0.15));
}

.site-bg__orb--2 {
  --orb-dur: 26s;
  width: 360px;
  height: 360px;
  bottom: 15%;
  left: -8%;
  background: radial-gradient(circle, rgba(182, 106, 80, 0.4), rgba(109, 76, 65, 0.1));
  animation-delay: -8s;
}

.site-bg__orb--3 {
  --orb-dur: 18s;
  width: 280px;
  height: 280px;
  top: 45%;
  right: 20%;
  background: radial-gradient(circle, rgba(245, 200, 180, 0.5), transparent);
  animation-delay: -4s;
}

.site-bg__orb--4 {
  --orb-dur: 24s;
  width: 320px;
  height: 320px;
  bottom: -5%;
  right: 30%;
  background: radial-gradient(circle, rgba(182, 106, 80, 0.35), transparent);
  animation-delay: -12s;
}

main,
.footer,
.trust-bar,
.section-wave,
.products-page__banner,
.products-page__stats,
.products-page__main,
.products-page__cta {
  position: relative;
  z-index: 1;
}

/* Nav must stay fixed above all page content — never override with position:relative */
.nav-wrapper {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999 !important;
}

/* Section label glow — merged with enhanced styles above */
.section__label {
  animation: labelShimmer 4s ease-in-out infinite;
}

.section__title {
  position: relative;
  display: inline-block;
}

.section__header--center .section__title::after,
.section__header .section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.625rem;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light));
  border-radius: 2px;
  transform-origin: left;
  animation: sectionLineGrow 0.8s ease forwards;
}

.section__header--center .section__title::after {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

/* Section backgrounds — keep position:relative from above; deco only */
.why-us::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 106, 80, 0.1), transparent 70%);
  pointer-events: none;
}

.products::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(182, 106, 80, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.factory::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-terracotta-light), var(--color-terracotta), var(--color-terracotta-light), transparent);
  opacity: 0.6;
}

.contact::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 106, 80, 0.12), transparent 65%);
  pointer-events: none;
}

/* Cards — gradient accents & glow (top bar handled above) */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover .why-card__icon {
  animation: iconPulse 1.5s ease infinite;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-terracotta-light), var(--color-terracotta), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  box-shadow: 0 24px 48px rgba(182, 106, 80, 0.22);
}

.stat-card {
  background: linear-gradient(145deg, var(--color-off-white), var(--color-white));
}

.stat-card:hover {
  box-shadow: 0 12px 32px rgba(182, 106, 80, 0.15);
  border-color: rgba(182, 106, 80, 0.2);
}

.stats-grid--clients {
  background: linear-gradient(135deg, var(--color-terracotta-dark) 0%, var(--color-brown) 50%, #5d4037 100%);
  box-shadow: 0 16px 48px rgba(78, 52, 46, 0.3);
  border: 2px solid rgba(212, 137, 111, 0.25);
}

/* Factory & timeline polish */
.factory-block__step {
  color: var(--color-terracotta);
  letter-spacing: 0.1em;
}

.process-step__circle {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
  box-shadow: 0 4px 16px rgba(182, 106, 80, 0.35);
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.process-step:hover .process-step__circle {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(182, 106, 80, 0.45);
}

.vm-card {
  background: linear-gradient(135deg, var(--color-brown) 0%, #5d4037 50%, var(--color-brown-light) 100%);
}

/* Footer — gradient top edge */
.footer {
  background: linear-gradient(180deg, #3e2723 0%, var(--color-brown) 40%, #2c1810 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-terracotta-light), var(--color-terracotta), var(--color-terracotta-light), transparent);
}

/* Back to top — glow */
.back-to-top {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
  box-shadow: 0 4px 20px rgba(182, 106, 80, 0.4);
}

.back-to-top:hover {
  box-shadow: 0 8px 28px rgba(182, 106, 80, 0.55);
  transform: translateY(-4px);
}

/* Products page enhancements */
.products-page__banner {
  background: linear-gradient(135deg, var(--color-brown) 0%, #5d4037 50%, var(--color-brown-light) 100%);
  background-size: 200% 200%;
  animation: heroGradient 15s ease infinite;
}

.products-page__shape {
  opacity: 0.15;
}

.products-page__stat {
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.products-page__stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(182, 106, 80, 0.15);
}

.products-page__tag[aria-current="true"],
.products-page__tag.active,
.products-page__tag--active {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
  box-shadow: 0 4px 16px rgba(182, 106, 80, 0.35);
}

.products-page__feature {
  transition: transform var(--transition-bounce), box-shadow var(--transition-base), border-color var(--transition-base);
}

.products-page__feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(182, 106, 80, 0.12);
  border-color: rgba(182, 106, 80, 0.25);
}

.products-page__cta {
  background: linear-gradient(135deg, var(--color-brown) 0%, #5d4037 100%);
  position: relative;
  overflow: hidden;
}

.products-page__cta-bg {
  opacity: 0.4;
  animation: heroGradient 20s ease infinite;
}

.gallery-grid .gallery-item {
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.gallery-grid .gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(182, 106, 80, 0.2);
}

/* Nav CTA button glow */
.nav__cta {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
  box-shadow: 0 2px 12px rgba(182, 106, 80, 0.3);
}

.nav__cta:hover {
  box-shadow: 0 6px 20px rgba(182, 106, 80, 0.45);
}

/* Hero image frame — colored ring */
.hero__image-frame {
  box-shadow: 0 20px 60px rgba(182, 106, 80, 0.2),
              0 0 0 4px rgba(182, 106, 80, 0.08);
}

.hero__image-frame:hover {
  box-shadow: 0 28px 72px rgba(182, 106, 80, 0.28),
              0 0 0 4px rgba(182, 106, 80, 0.15);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero,
  .products-page__banner,
  .products-page__cta-bg,
  .scroll-progress,
  .site-bg__orb,
  .section__label,
  .why-card:hover .why-card__icon,
  .trust-bar__item {
    animation: none;
  }

  .site-bg__orb {
    opacity: 0.25;
  }
}

/* ============================================================
   VISUAL ENHANCEMENTS — Color, decoration & depth
   ============================================================ */

/* Trust bar below hero */
.trust-bar {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--color-brown) 0%, #5d4037 45%, var(--color-terracotta-dark) 100%);
  padding: 1.25rem 0;
  box-shadow: 0 8px 32px rgba(78, 52, 46, 0.25);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--color-white);
}

.trust-bar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-terracotta-light);
}

.trust-bar__icon svg {
  width: 22px;
  height: 22px;
}

.trust-bar__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-peach);
}

.trust-bar__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .trust-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Wave section dividers */
.section-wave {
  display: block;
  line-height: 0;
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

.section-wave--cream svg { fill: #fdf6f1; }
.section-wave--peach svg { fill: #f8ede4; }
.section-wave--sage svg { fill: #ede4d8; }
.section-wave--white svg { fill: #faf3ee; }
.section-wave--warm svg { fill: #f5ebe3; }
.section-wave--contact svg { fill: #faf0ea; }

/* Section decorative blobs */
.section-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.section-deco--1 {
  width: 200px;
  height: 200px;
  top: 5%;
  left: -60px;
  background: radial-gradient(circle, rgba(182, 106, 80, 0.12), transparent 70%);
}

.section-deco--2 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: -40px;
  background: radial-gradient(circle, rgba(122, 143, 110, 0.15), transparent 70%);
}

.section-deco--3 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 5%;
  background: radial-gradient(circle, rgba(212, 137, 111, 0.18), transparent 70%);
}

/* Stronger ambient orbs */
.site-bg__orb {
  opacity: 0.5;
}

/* Hero badge — richer pill */
.hero__badge {
  background: linear-gradient(135deg, rgba(182, 106, 80, 0.18), rgba(212, 137, 111, 0.12));
  border: 1px solid rgba(182, 106, 80, 0.3);
  box-shadow: 0 4px 16px rgba(182, 106, 80, 0.15);
}

/* Hero title accent */
.hero__title {
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-terracotta-dark) 60%, var(--color-brown) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Factory block content panels */
.factory-block__content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 245, 0.85));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-terracotta);
  box-shadow: 0 8px 28px rgba(182, 106, 80, 0.08);
}

.factory-block--reverse .factory-block__content {
  border-left: none;
  border-right: 4px solid var(--color-sage);
}

/* Factory page header icon */
.factory-page__header-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(182, 106, 80, 0.15), rgba(212, 137, 111, 0.08));
  border-radius: 50%;
  color: var(--color-terracotta);
  opacity: 1;
}

/* Info cards — warmer */
.info-card {
  background: linear-gradient(145deg, var(--color-white), #fff9f5);
  border: 1px solid rgba(182, 106, 80, 0.12);
}

.info-card__icon {
  background: linear-gradient(135deg, rgba(182, 106, 80, 0.18), rgba(212, 137, 111, 0.1));
}

/* Stats on clients — bolder */
.stats-grid--clients {
  background: linear-gradient(135deg, var(--color-terracotta-dark) 0%, var(--color-brown) 50%, #5d4037 100%);
  border: 2px solid rgba(212, 137, 111, 0.25);
}

.stat-card--light {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(212, 137, 111, 0.2);
}

/* Section label — richer */
.section__label {
  background: linear-gradient(135deg, rgba(182, 106, 80, 0.15), rgba(212, 137, 111, 0.08));
  padding: 0.4rem 1.125rem;
  border-radius: 100px;
  border: 1px solid rgba(182, 106, 80, 0.22);
  box-shadow: 0 2px 12px rgba(182, 106, 80, 0.1);
}

/* Product card image overlay tint */
.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78, 52, 46, 0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.product-card:hover .product-card__image::after {
  opacity: 1;
}

/* Footer decorative pattern */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 137, 111, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
