/* ==========================================================================
   Cereal Noble — Landing — Modern Design
   ========================================================================== */

/* --- Reset & Base --- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #3d3d3d;
  background: #f7f5f0;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* --- Reveal Animations --- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.products-grid .reveal:nth-child(2),
.features-grid .reveal:nth-child(2),
.packaging-grid .reveal:nth-child(2) { transition-delay: 0.08s; }

.products-grid .reveal:nth-child(3),
.features-grid .reveal:nth-child(3),
.packaging-grid .reveal:nth-child(3) { transition-delay: 0.16s; }

.features-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.regions-grid .reveal:nth-child(2) { transition-delay: 0.04s; }
.regions-grid .reveal:nth-child(3) { transition-delay: 0.08s; }
.regions-grid .reveal:nth-child(4) { transition-delay: 0.12s; }
.regions-grid .reveal:nth-child(5) { transition-delay: 0.16s; }
.regions-grid .reveal:nth-child(6) { transition-delay: 0.2s; }
.regions-grid .reveal:nth-child(7) { transition-delay: 0.24s; }

.stats-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* --- Layout --- */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

/* --- Section Headers --- */

.section-header {
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b5a48a;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #2a2a2a;
  letter-spacing: -0.025em;
}

.section-desc {
  margin-top: 0.75rem;
  color: #999;
  font-size: 1.0625rem;
  max-width: 460px;
}

/* --- Link Arrow --- */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #b5a48a;
  position: relative;
  padding-bottom: 2px;
  transition: gap 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-arrow:hover { gap: 0.85rem; }
.link-arrow:hover::after { width: 100%; }

.link-arrow span {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.link-arrow:hover span { transform: translateX(4px); }

.link-arrow--dark { color: #5a4d3a; }
.link-arrow--dark::after { background: #5a4d3a; }

/* --- Navbar --- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-img--light {
  filter: invert(1);
  opacity: 0.85;
}

.logo-img--light:hover {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 450;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a { color: #888; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: #b5a48a; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.25) !important;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.nav-cta:hover {
  background-color: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.4) !important;
}

.nav-cta::after { display: none !important; }

.navbar.scrolled .nav-cta {
  border-color: #d5cbb8 !important;
  color: #b5a48a !important;
}

.navbar.scrolled .nav-cta:hover {
  background-color: #b5a48a !important;
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled .nav-toggle span { background: #3d3d3d; }

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #2a2624;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 7rem 0 7rem;
}

.hero-content {
  max-width: 520px;
}

/* Hero large logo */
.hero-logo-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 150px;
  height: auto;
  filter: invert(1);
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: left center;
}

/* Hide navbar logo initially (JS controls opacity) */
.navbar:not(.scrolled) .logo-img {
  opacity: 0;
  filter: invert(1);
  transition: opacity 0.3s ease;
}

.navbar.scrolled .logo-img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-actions {
  margin-bottom: 0;
}

.hero .link-arrow {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
}

.hero .link-arrow::after { background: rgba(255,255,255,0.85); }
.hero .link-arrow:hover { color: #fff; }

/* Hero product cards grid */
.hero-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  text-decoration: none;
  color: #fff;
}

.hero-product-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
}

.hero-product-card.is-active {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

.hero-product-img-wrap {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.hero-product-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}

.hero-product-card:hover .hero-product-name {
  color: #fff;
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
}

/* --- Product Catalog --- */

.catalog {
  background: transparent;
}

.catalog-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  scroll-margin-top: 5rem;
}

.catalog-item:last-child {
  border-bottom: none;
}

.catalog-item--reverse {
  direction: rtl;
}

.catalog-item--reverse > * {
  direction: ltr;
}

.catalog-item-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.catalog-item-visual img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-item:hover .catalog-item-visual img {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 32px 64px -16px rgba(0,0,0,0.15);
}

.catalog-item-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #c8b99a;
  margin-bottom: 0.75rem;
}

.catalog-item-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.catalog-item-type {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b5a48a;
  margin-bottom: 1.25rem;
}

.catalog-item-info > p {
  color: #888;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.catalog-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catalog-item-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  background: rgba(181, 164, 138, 0.08);
  border: 1px solid rgba(181, 164, 138, 0.15);
}

.catalog-item-tags li svg {
  color: #b5a48a;
  flex-shrink: 0;
}

/* --- Packaging Philosophy --- */

.packaging {
  background: transparent;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.packaging-item {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s ease;
}

.packaging-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.85);
}

.packaging-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #c8b99a;
  margin-bottom: 1rem;
}

.packaging-item h3 {
  font-size: 1.0625rem;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.packaging-item p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

/* --- About / Features --- */

.about {
  background: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s ease;
}

.feature:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.85);
}

.feature-icon {
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-icon svg {
  display: block;
}

.feature h3 {
  font-size: 0.9375rem;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
}

/* --- Stats --- */

.stats-section {
  background: #2a2a2a;
  color: #fff;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #d5cbb8;
}

.stat-label {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 450;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* --- Partners --- */

.partners {
  background: #2a2a2a;
  color: #fff;
}

.partners .section-label {
  color: #d5cbb8;
}

.partners .section-header h2 {
  color: #fff;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  text-align: left;
  font-weight: 550;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background-color 0.35s ease;
  cursor: default;
}

.partner-card::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5cbb8;
  flex-shrink: 0;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(213, 203, 184, 0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* --- Regions --- */

.regions {
  background: transparent;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.region-card {
  padding: 1.25rem 1rem;
  text-align: center;
  font-weight: 550;
  font-size: 0.9375rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background-color 0.35s ease;
  cursor: default;
}

.region-card.active {
  background: rgba(173, 216, 240, 0.15);
  border-color: #7ec8e3;
  color: #7ec8e3;
}

.region-card.active:hover {
  background: rgba(173, 216, 240, 0.25);
  border-color: #a0d8ef;
}

.region-card:hover {
  transform: translateY(-3px);
  border-color: #d5cbb8;
  background: rgba(255,255,255,0.9);
}

/* --- Testimonials --- */

.testimonials {
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(181, 164, 138, 0.12);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: #2a2a2a;
  display: block;
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: #bbb;
  font-size: 0.8125rem;
  margin-top: 0.125rem;
}

/* --- CTA --- */

.cta-section {
  background: #eee8da;
  text-align: center;
  padding: 6rem 0;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3d3d3d;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cta-content > p {
  color: #999;
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

/* --- Contact --- */

.contact {
  background: transparent;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  color: #3d3d3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c5c5c5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8b99a;
  box-shadow: 0 0 0 3px rgba(200, 185, 154, 0.12);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: #3d3d3d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 550;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease, gap 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover {
  background: #2a2a2a;
  gap: 0.85rem;
}

.form-submit span {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover span { transform: translateX(3px); }

/* --- Footer --- */

.footer {
  background: #2a2a2a;
  color: #999;
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand .logo-img {
  height: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #666;
  max-width: 260px;
  line-height: 1.6;
}

.footer-address {
  margin-top: 0.75rem;
}

.footer-phone a {
  color: #666;
  transition: color 0.3s ease;
}

.footer-phone a:hover {
  color: #d5cbb8;
}

.footer-links h4 {
  color: #ccc;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #777;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: #d5cbb8; }

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.8125rem;
  color: #555;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .packaging-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .catalog-item {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .catalog-item--reverse {
    direction: ltr;
  }

  .catalog-item-info > p {
    max-width: 100%;
  }

  .catalog-item-tags {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: rgba(247, 245, 240, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    color: #888 !important;
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  .nav-links a:hover { color: #b5a48a !important; }

  .nav-cta {
    border-color: #d5cbb8 !important;
    color: #b5a48a !important;
    text-align: center;
    margin-top: 0.5rem;
  }

  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 7rem 0 4rem;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-logo-wrap { text-align: center; }
  .hero-logo { width: 110px; margin: 0 auto; transform-origin: center center; }
  .hero-subtitle { max-width: 100%; }

  .hero-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hero-product-img-wrap {
    max-width: 90px;
  }

  .hero h1 { font-size: 2.5rem; }
  .section { padding: 4.5rem 0; }
  .section-header h2 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }

  .catalog-item {
    padding: 3rem 0;
  }

  .catalog-item-info h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .cta-content h2 { font-size: 1.75rem; }
  .catalog-item-info h3 { font-size: 1.5rem; }

  .hero-products {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .hero-product-card {
    padding: 1rem 0.75rem;
  }

  .hero-product-img-wrap {
    max-width: 72px;
  }

  .hero-product-name {
    font-size: 0.7rem;
  }
}

/* --- Print --- */

@media print {
  *, *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  a[href]::after { content: " (" attr(href) ")"; }
  .navbar, .hero-scroll-hint { display: none; }
}
