/* ============================================
   MAMA MATILLA - Creative Textile
   Brand Colors: Sage Green & Bej/Cream
   Typography: Gill Sans Nova / Raleway fallback
   ============================================ */

/* === CSS VARIABLES === */
:root {
  /* Primary Colors */
  --sage-green: #8B9A7B;
  --sage-dark: #6B7D5E;
  --sage-light: #A8B89A;
  --sage-muted: #C5D1BA;
  --sage-bg: #EFF3EB;

  /* Secondary - Bej/Cream */
  --cream: #FAF0E6;
  --cream-dark: #F0E0CC;
  --antique-white: #FAEBD7;
  --champagne: #F7E7CE;
  --linen: #FFF8F0;
  --bisque: #FFE4C4;

  /* Neutral */
  --navy: #2C3E50;
  --navy-light: #34495E;
  --charcoal: #333333;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --border-light: #E8E0D8;
  --white: #FFFFFF;
  --off-white: #FAFAFA;

  /* Accent */
  --pudra: #E8C4B8;
  --pudra-light: #F2DDD5;

  /* Typography */
  --font-heading: 'Raleway', 'Gill Sans', 'Gill Sans MT', sans-serif;
  --font-body: 'Raleway', 'Gill Sans', 'Gill Sans MT', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 300;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === PRELOADER === */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--sage-green);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* === TOP BAR === */
.top-bar {
  background: var(--sage-green);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 300;
}

.top-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* === HEADER / NAVBAR === */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 72px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--sage-green);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-green);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--sage-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions a {
  color: var(--text-dark);
  font-size: 18px;
}

.nav-actions a:hover {
  color: var(--sage-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.75) 40%,
    rgba(255,255,255,0.2) 70%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 80px;
}

.hero-subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-green);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 200;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-green);
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--sage-green);
  color: var(--white);
  border: 1.5px solid var(--sage-green);
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139,154,123,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--sage-green);
  border: 1.5px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* === SUB-BRANDS NAVIGATION === */
.sub-brands {
  background: var(--cream);
  padding: 0;
  border-bottom: 1px solid var(--border-light);
}

.sub-brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
}

.sub-brand-tab {
  padding: 18px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.sub-brand-tab:hover,
.sub-brand-tab.active {
  color: var(--sage-green);
  border-bottom-color: var(--sage-green);
}

/* === CATEGORIES SECTION === */
.categories {
  padding: var(--section-padding);
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-green);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 40px;
  font-weight: 200;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--sage-green);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
}

.category-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.category-subtitle {
  font-size: 13px;
  opacity: 0.85;
  font-weight: 300;
}

.category-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* === ABOUT / QUOTE SECTION === */
.about-section {
  padding: var(--section-padding);
  background: var(--linen);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--sage-green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
}

.about-content {
  padding: 20px 0;
}

.about-quote {
  font-size: 28px;
  font-weight: 200;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--sage-green);
}

.about-quote em {
  font-style: italic;
  color: var(--sage-green);
}

.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* === STATS === */
.stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 42px;
  font-weight: 200;
  color: var(--sage-green);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* === PRODUCTS SECTION === */
.products-section {
  padding: var(--section-padding);
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sage-green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.product-info {
  padding: 20px;
}

.product-brand {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-green);
  font-weight: 500;
  margin-bottom: 6px;
}

.product-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.product-price .old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 13px;
  margin-left: 8px;
}

/* === BRAND VALUES === */
.values-section {
  padding: var(--section-padding);
  background: var(--sage-green);
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-card {
  text-align: center;
  padding: 32px 16px;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.value-title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}

.value-text {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.85;
  font-weight: 300;
}

/* === GALLERY / LIFESTYLE === */
.lifestyle-section {
  padding: var(--section-padding);
  background: var(--white);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.lifestyle-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.lifestyle-item:first-child {
  grid-row: 1 / 3;
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lifestyle-item:hover img {
  transform: scale(1.05);
}

.lifestyle-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-dark);
}

/* === CTA BANNER === */
.cta-banner {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 200;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  color: var(--sage-green);
}

.cta-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* === NEWSLETTER === */
.newsletter {
  padding: 60px 0;
  background: var(--sage-green);
  text-align: center;
}

.newsletter-title {
  font-size: 28px;
  font-weight: 200;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 2px 0 0 2px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.95);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  border-radius: 0 2px 2px 0;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--navy);
}

/* === FOOTER === */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--sage-green);
  border-color: var(--sage-green);
  color: var(--white);
}

.footer-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
  color: var(--sage-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--sage-green);
}

/* === ABOUT PAGE === */
.page-hero {
  height: 45vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-green);
  font-weight: 500;
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: 48px;
  font-weight: 200;
  color: var(--text-dark);
}

.page-hero-title em {
  font-style: italic;
  color: var(--sage-green);
}

/* === ABOUT CONTENT === */
.about-story {
  padding: var(--section-padding);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h3 {
  font-size: 28px;
  font-weight: 200;
  margin-bottom: 24px;
}

.story-text h3 em {
  font-style: italic;
  color: var(--sage-green);
}

.story-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* === CATEGORIES PAGE === */
.category-detail {
  padding: 80px 0;
}

.category-detail:nth-child(even) {
  background: var(--linen);
}

.category-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.category-detail:nth-child(even) .category-detail-grid {
  direction: rtl;
}

.category-detail:nth-child(even) .category-detail-grid > * {
  direction: ltr;
}

.category-detail-image {
  border-radius: 8px;
  overflow: hidden;
}

.category-detail-image img {
  width: 100%;
  border-radius: 8px;
}

.category-detail-content h3 {
  font-size: 32px;
  font-weight: 200;
  margin-bottom: 20px;
}

.category-detail-content h3 em {
  font-style: italic;
  color: var(--sage-green);
}

.category-detail-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.feature-list {
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-body);
}

.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-green);
  flex-shrink: 0;
  margin-top: 6px;
}

/* === CONTACT PAGE === */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--linen);
  border-radius: 8px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(139,154,123,0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--sage-green);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--border-light);
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content {
    padding-left: 40px;
  }
  .hero-title {
    font-size: 42px;
  }
  .about-grid, .about-story-grid, .category-detail-grid, .contact-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .top-bar {
    font-size: 11px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

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

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: 30px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    aspect-ratio: 16/10;
  }

  .about-grid,
  .about-story-grid,
  .category-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-detail:nth-child(even) .category-detail-grid {
    direction: ltr;
  }

  .stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-item {
    flex: 1;
    min-width: 120px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .lifestyle-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 0 16px;
  }

  .newsletter-form input[type="email"] {
    border-radius: 2px;
  }

  .newsletter-form button {
    border-radius: 2px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero-title {
    font-size: 34px;
  }

  .sub-brand-tab {
    padding: 14px 20px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .about-quote {
    font-size: 22px;
  }
  .stat-number {
    font-size: 32px;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
