/* ============================================
   Amina's Piece - Modern Professional Design
   Apple-Inspired Clean Aesthetic
   ============================================ */

/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent text size adjustment on mobile */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Increase tap target sizes on touch devices */
  .nav-menu a,
  .theme-toggle,
  .shop-btn,
  .product-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
  
  /* Disable hover effects on touch devices */
  .product-card:hover {
    transform: none;
  }
}

:root {
  /* Modern Color Palette - Clean & Professional */
  --primary-dark: #1d1d1f;
  --primary-gray: #86868b;
  --accent-rose: #b08968;
  --accent-rose-light: #d4b896;
  --accent-rose-dark: #8b6f4f;
  --bg-white: #ffffff;
  --bg-light: #fbfbfd;
  --bg-cream: #f5f5f7;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --border-light: #d2d2d7;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
}

/* Dark Mode Colors - Professional Eye-Friendly Palette with Warm Tones */
body.dark-mode {
  --primary-dark: #f5f5f7;
  --primary-gray: #98989d;
  --accent-rose: #e0b494;
  --accent-rose-light: #f5d4a9;
  --accent-rose-dark: #c89968;
  --bg-white: #0d0d0d;
  --bg-light: #1a1410;
  --bg-cream: #2a1f18;
  --text-primary: #f5e6d3;
  --text-secondary: #d4b896;
  --border-light: #3d2f24;
  --shadow-sm: 0 2px 8px rgba(212, 184, 150, 0.15);
  --shadow-md: 0 4px 16px rgba(212, 184, 150, 0.2);
  --shadow-lg: 0 8px 32px rgba(212, 184, 150, 0.25);
  --shadow-xl: 0 16px 48px rgba(212, 184, 150, 0.3);
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1410 50%, #0d0d0d 100%);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent text size adjustment on mobile */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    "Roboto", "Helvetica Neue", sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  /* Prevent horizontal scroll on mobile */
  max-width: 100vw;
  position: relative;
}

/* Touch-friendly improvements for mobile devices */
@media (hover: none) and (pointer: coarse) {
  .nav-menu a,
  .theme-toggle,
  .shop-btn,
  button {
    -webkit-tap-highlight-color: rgba(176, 137, 104, 0.2);
  }
  
  /* Ensure minimum tap target size */
  .nav-menu a {
    padding: 8px 4px;
  }
  
  .shop-btn {
    min-height: 44px;
  }
}

/* Universal transition for dark mode with warm color flow */
* {
  transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Navigation - Clean & Floating
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

body.dark-mode .navbar {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 48px;
    transition: opacity 0.3s ease;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.7;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    margin-left: 16px;
    position: relative;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--bg-cream);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover::before {
    opacity: 1;
    transform: scale(1);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0.8);
}

body.dark-mode .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0.8);
}

body.dark-mode .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: opacity 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  opacity: 0.6;
}

/* ============================================
   Hero Section - Bold & Minimal
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/hero-bg2.png') center/cover no-repeat;
  overflow: hidden;
  padding: 80px 32px 64px;
  transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .hero-section {
  background: url('assets/hero-bg2.png') center/cover no-repeat, 
              linear-gradient(135deg, rgba(212, 184, 150, 0.05) 0%, rgba(26, 20, 16, 0.8) 50%, rgba(13, 13, 13, 0.95) 100%);
  background-blend-mode: overlay;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  max-width: 980px;
  margin: 0 auto;
}

.hero-logo {
  margin-top: -100px;
  margin-bottom: 48px;
  animation: fadeInLogo 1.2s ease-out;
  pointer-events: none;
  position: relative;
  left: -250px;
}

.hero-logo img {
  height: 700px;
  width: auto;
  max-width: 95vw;
  opacity: 0.40;
  filter: drop-shadow(0 8px 32px rgba(29, 29, 31, 0.06));
}

body.dark-mode .hero-logo img {
  opacity: 0.25;
  filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.1)) brightness(1.1);
}

body.dark-mode .hero-scarf img {
  filter: drop-shadow(0 60px 120px rgba(0, 0, 0, 0.8)) brightness(0.9);
}

body.dark-mode .hero-logo img {
  opacity: 0.25;
  filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.1)) brightness(1.1);
}

body.dark-mode .hero-scarf img {
  filter: drop-shadow(0 60px 120px rgba(0, 0, 0, 0.8)) brightness(0.9);
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 0.40;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 48px;
  margin-top: -380px;
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent-rose), transparent);
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--accent-rose);
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -12px);
  }
}

/* Decorative Hero Scarf */
.hero-scarf {
    position: absolute;
    right: -5%;
    bottom: -20%;
    z-index: 5;
    opacity: 1;
    pointer-events: none;
}

.hero-scarf img {
    width: 850px;
    height: auto;
    filter: drop-shadow(0 60px 120px rgba(0, 0, 0, 0.3));
    transform: perspective(1000px) rotate(-32deg) rotateX(15deg) scale(1.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: slideInScarf 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideInScarf {
    from {
        opacity: 0;
        transform: perspective(1000px) rotate(-45deg) rotateX(25deg) scale(0.9) translate(200px, 200px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotate(-32deg) rotateX(15deg) scale(1.1) translate(0, 0);
    }
}

/* Floating decorative elements */
.floating-yarn {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: rotate 25s linear infinite;
  filter: blur(40px);
}

.yarn-1 {
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-rose) 0%, transparent 70%);
}

.yarn-2 {
  bottom: 15%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    var(--accent-rose-light) 0%,
    transparent 70%
  );
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
  }
}

/* ============================================
   Story Sections - Clean Layout
   ============================================ */

.story-section {
  min-height: 100vh;
  padding: 120px 32px;
  position: relative;
  display: flex;
  align-items: center;
}

.section-1 {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

body.dark-mode .section-1 {
  background: linear-gradient(135deg, #1a1410 0%, #0d0d0d 100%);
}

.section-2 {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

body.dark-mode .section-2 {
  background: linear-gradient(225deg, #2a1f18 0%, #1a1410 100%);
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-wrapper.reverse {
  direction: rtl;
}

.content-wrapper.reverse > * {
  direction: ltr;
}

.text-content {
  max-width: 500px;
}

.text-content h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.text-content p {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Image Containers */
.mock-image {
  width: 100%;
  height: 480px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .mock-image {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.dark-mode .mock-image:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.dark-mode .mock-image {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.dark-mode .mock-image:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mock-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.image-label {
    font-size: 16px;
    font-weight: 500;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    letter-spacing: 0.02em;
    position: absolute;
    bottom: 24px;
    left: 24px;
}

body.dark-mode .image-label {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .image-label {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern gradient backgrounds for images */
.hat-image {
    background: url('../assets/beanie.png') center/cover no-repeat, #f5f5f7;
}

.cardigan-image {
    background: url('../assets/cardigan.png') center/cover no-repeat, #f5f5f7;
}

.hat-image::before,
.cardigan-image::before {
    display: none;
}

/* Floating decorative elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  filter: blur(60px);
  pointer-events: none;
}

.element-1 {
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-rose) 0%, transparent 70%);
}

.element-2 {
  bottom: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    var(--accent-rose-light) 0%,
    transparent 70%
  );
}

.element-3 {
  top: 20%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    var(--accent-rose-dark) 0%,
    transparent 70%
  );
}

/* ============================================
   Gallery Section - Grid Layout
   ============================================ */

.gallery-section {
  padding: 120px 32px;
  background: var(--bg-cream);
}

.section-title {
  text-align: center;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-img-1,
.gallery-img-2,
.gallery-img-3,
.gallery-img-4,
.gallery-img-5,
.gallery-img-6 {
  height: 380px;
}

.gallery-img-1 {
  background: url('../assets/beanie.png') center/cover no-repeat, #f5f5f7;
}

.gallery-img-2 {
  background: url('../assets/scarf.png') center/cover no-repeat, #f5f5f7;
}

.gallery-img-3 {
  background: url('../assets/sweater.png') center/cover no-repeat, #f5f5f7;
}

.gallery-img-4 {
  background: url('../assets/bag.png') center/cover no-repeat, #f5f5f7;
}

.gallery-img-5 {
  background: url('../assets/blanket.png') center/cover no-repeat, #f5f5f7;
}

.gallery-img-6 {
  background: url('../assets/cardigan.png') center/cover no-repeat, #f5f5f7;
}

.gallery-img-1::before,
.gallery-img-2::before,
.gallery-img-3::before,
.gallery-img-4::before,
.gallery-img-5::before,
.gallery-img-6::before {
  display: none;
}

/* ============================================
   Bio Section - About the Artist
   ============================================ */

.bio-section {
  padding: 120px 32px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.bio-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.bio-image {
  position: relative;
}

.bio-portrait {
  background: linear-gradient(135deg, #b08968 0%, #8b6f4f 100%);
  height: 560px;
  border-radius: 18px;
}

.bio-portrait::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 16px,
    rgba(255, 255, 255, 0.04) 16px,
    rgba(255, 255, 255, 0.04) 32px
  );
}

.bio-content h2 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bio-text p {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.bio-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.bio-signature svg {
  opacity: 0.6;
}

.bio-signature span {
  font-size: 24px;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ============================================
   Stats Section - Impact Numbers
   ============================================ */

.stats-section {
  padding: 120px 32px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.stat-card {
  background: var(--bg-white);
  padding: 48px 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
  position: relative;
  overflow: hidden;
}

body.dark-mode .stat-card {
  background: var(--bg-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark-mode .stat-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .stat-card {
  background: var(--bg-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark-mode .stat-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-rose),
    var(--accent-rose-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(var(--shadow-sm));
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-rose);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.stat-description {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   Process Section - The Journey
   ============================================ */

.process-section {
  padding: 120px 32px;
  background: var(--bg-white);
}

.process-timeline {
  max-width: 1280px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 72px;
  font-weight: 700;
  color: var(--accent-rose);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.process-step h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   Contact Section - Get in Touch
   ============================================ */

.contact-section {
  padding: 120px 32px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact-content p {
  font-size: 21px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.contact-link {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-rose);
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: -0.01em;
}

.contact-link:hover {
  opacity: 0.6;
}

.social-links {
  display: flex;
  gap: 32px;
}

.social-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.5;
}

/* ============================================
   Footer - Simple & Clean
   ============================================ */

.footer {
  padding: 48px 32px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

/* Mobile-specific footer adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 32px 20px;
  }
  
  .footer p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 24px 16px;
  }
  
  .footer p {
    font-size: 12px;
    line-height: 1.5;
  }
}

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

@media (max-width: 1024px) {
  .content-wrapper,
  .bio-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .content-wrapper.reverse {
    direction: ltr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo {
    height: 36px;
  }

  .logo img {
    max-width: 180px;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    margin-left: 12px;
  }

  .theme-toggle svg {
    width: 18px;
    height: 18px;
  }

  .hero-logo img {
    height: 450px;
  }

  .hero-section {
    padding: 100px 20px 60px;
    min-height: 90vh;
  }

  .story-section,
  .gallery-section,
  .bio-section,
  .stats-section,
  .process-section,
  .contact-section {
    padding: 60px 20px;
  }

  .text-content h2 {
    margin-bottom: 20px;
  }

  .text-content p {
    font-size: 17px;
  }

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

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

  .mock-image,
  .bio-portrait {
    height: 320px;
  }

  .gallery-img-1,
  .gallery-img-2,
  .gallery-img-3,
  .gallery-img-4,
  .gallery-img-5,
  .gallery-img-6 {
    height: 280px;
  }

  .hero-scarf {
    left: 50%;
    top: 60%;
    opacity: 0.7;
  }

  .hero-scarf img {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
  }

  .logo {
    height: 32px;
  }

  .logo img {
    max-width: 140px;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-menu a {
    font-size: 11px;
  }

  .theme-toggle {
    width: 32px;
    height: 32px;
    margin-left: 8px;
  }

  .theme-toggle svg {
    width: 16px;
    height: 16px;
  }

  .hero-section {
    padding: 80px 16px 50px;
  }

  .hero-logo {
    left: 0;
  }

  .hero-logo img {
    height: 300px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-top: -300px;
  }

  .story-section,
  .gallery-section,
  .bio-section,
  .stats-section,
  .process-section,
  .contact-section {
    padding: 50px 16px;
  }

  .text-content h2 {
    font-size: 32px;
  }

  .text-content p {
    font-size: 16px;
  }

  .stat-card {
    padding: 32px 20px;
  }

  .stat-number {
    font-size: 42px;
  }

  .social-links {
    flex-direction: column;
    gap: 16px;
  }

  .hero-scarf {
    right: -10%;
    bottom: 5%;
    left: auto;
    top: auto;
    opacity: 0.6;
  }

  .hero-scarf img {
    width: 180px;
  }

  .shop-header {
    padding: 100px 16px 50px;
  }

  .shop-header h1 {
    font-size: 36px;
  }

  .shop-header p {
    font-size: 16px;
  }

  .shop-section {
    padding: 0 16px 60px;
  }

  .product-grid {
    gap: 32px;
  }

  .product-image {
    height: 260px;
  }

  .scroll-indicator {
    bottom: 32px;
  }
}

/* ============================================
   Landscape Mobile Orientation
   ============================================ */

@media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 120px 32px 60px;
  }

  .hero-logo img {
    height: 250px;
  }

  .hero-subtitle {
    margin-top: -200px;
  }

  .navbar {
    padding: 8px 0;
  }

  .nav-container {
    height: 56px;
  }

  .story-section,
  .gallery-section,
  .bio-section,
  .stats-section,
  .process-section,
  .contact-section {
    padding: 60px 32px;
  }

  .shop-header {
    padding: 120px 32px 60px;
  }
}

/* ============================================
   Extra Small Devices (< 375px)
   ============================================ */

@media (max-width: 374px) {
  .nav-menu a {
    font-size: 10px;
  }

  .logo img {
    max-width: 120px;
  }

  .hero-logo img {
    height: 280px;
  }

  .text-content h2 {
    font-size: 28px;
  }

  .shop-header h1 {
    font-size: 32px;
  }

  .product-image {
    height: 240px;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Shop Page Styles
   ============================================ */

.shop-header {
    padding: 180px 32px 80px;
    background: var(--bg-white);
    text-align: center;
}

body.dark-mode .shop-header {
    background: var(--bg-white);
}

.shop-header h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.shop-header p {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.shop-section {
    padding: 0 32px 120px;
    background: var(--bg-white);
}

.product-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 48px 32px;
}

.product-card {
    background: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

body.dark-mode .product-card {
    background: var(--bg-light);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    background: #f5f5f7;
    border-radius: 18px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

body.dark-mode .product-image {
    background: var(--bg-cream);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.dark-mode .product-image img {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)) brightness(0.95);
}

.product-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

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

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.8;
}

.shop-btn {
    padding: 10px 24px;
    background: var(--text-primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

body.dark-mode .shop-btn {
    background: var(--accent-rose);
    color: var(--bg-white);
}

.shop-btn:hover {
    background: #000;
    transform: scale(1.05);
}

body.dark-mode .shop-btn:hover {
    background: var(--accent-rose-light);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .shop-header {
        padding: 120px 20px 60px;
    }

    .shop-header h1 {
        font-size: 40px;
    }

    .shop-header p {
        font-size: 18px;
    }

    .shop-section {
        padding: 0 20px 80px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-image {
        height: 280px;
    }

    .product-info h3 {
        font-size: 22px;
    }

    .shop-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ============================================
   Shop CTA Section
   ============================================ */

.shop-cta-section {
    padding: 120px 32px;
    background: var(--bg-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.shop-cta-content h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.shop-cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

.shop-cta-content .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--text-primary);
    color: #fff;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.shop-cta-content .cta-button:hover {
    background: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
