/* ============================================
   SATIN SECRET UNDERWEAR — Master Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- Custom Properties --- */
:root {
  --color-burgundy: #6B1D3A;
  --color-burgundy-dark: #4E1229;
  --color-gold: #C9A96E;
  --color-gold-dark: #B8954F;
  --color-ivory: #FAF7F2;
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-rose: #D4A5A5;
  --color-gray: #F5F0EB;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --max-width: 1200px;
  --nav-height: 72px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease-out;

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-black);
  background-color: var(--color-ivory);
  line-height: 1.65;
  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: color var(--transition-fast); }
button, [role="button"], a[href], summary, label[for] { cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, button, select { font: inherit; border: none; outline: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-burgundy);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p { max-width: 70ch; }
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-black);
  opacity: 0.7;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-3xl) 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  min-height: 44px;
  min-width: 44px;
}
.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--color-gold-dark);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-burgundy {
  background-color: var(--color-burgundy);
  color: var(--color-white);
}
.btn-burgundy:hover, .btn-burgundy:focus-visible {
  background-color: var(--color-burgundy-dark);
  box-shadow: var(--shadow-md);
}

/* --- Focus Styles --- */
*:focus-visible {
  outline: 2px solid var(--color-burgundy);
  outline-offset: 2px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header.scrolled {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(107, 29, 58, 0.08);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-burgundy);
  letter-spacing: 0.02em;
}
.hero .logo-text,
.site-header:not(.scrolled) .logo-text {
  color: var(--color-white);
}
.site-header.scrolled .logo-text {
  color: var(--color-burgundy);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-menu a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: var(--space-xs) 0;
}
.site-header.scrolled .nav-menu a {
  color: var(--color-black);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}
.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-sm);
  color: var(--color-white);
  z-index: 1001;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.site-header.scrolled .menu-toggle {
  color: var(--color-black);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.55) 0%,
    rgba(107, 29, 58, 0.35) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-xl);
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  line-height: 1.15;
}
.hero .hero-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.hero .btn {
  margin-top: var(--space-md);
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.6) 0%,
    rgba(107, 29, 58, 0.4) 100%
  );
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
}
.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: var(--space-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FEATURED COLLECTIONS
   ============================================ */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.collection-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.collection-card-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.collection-card:hover .collection-card-image img {
  transform: scale(1.05);
}
.collection-card-content {
  padding: var(--space-lg);
}
.collection-card-content h3 {
  margin-bottom: var(--space-sm);
}
.collection-card-content p {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: var(--space-md);
}
.card-link {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--transition-fast);
}
.card-link:hover {
  gap: var(--space-sm);
}
.card-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   BRAND VALUES
   ============================================ */
.brand-values {
  background: var(--color-gray);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: center;
}
.value-item {
  padding: var(--space-xl) var(--space-md);
}
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-burgundy);
}
.value-icon svg {
  width: 100%;
  height: 100%;
}
.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.value-item p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.testimonial-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 165, 165, 0.25);
  border-radius: 12px;
  padding: var(--space-2xl);
  text-align: center;
  transition: box-shadow var(--transition-base);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}
.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}
.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-black);
  margin-bottom: var(--space-lg);
}
.testimonial-author {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-burgundy);
}
.testimonial-location {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 2px;
}

/* ============================================
   PHOTO GRID
   ============================================ */
.photo-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.photo-grid-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.photo-grid-item:hover img {
  transform: scale(1.06);
}
.photo-grid-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ============================================
   NEWSLETTER BANNER
   ============================================ */
.newsletter-banner {
  background: var(--color-burgundy);
  text-align: center;
}
.newsletter-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.newsletter-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto var(--space-xl);
  font-size: 1rem;
}
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  font-size: 0.9rem;
  min-height: 44px;
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--color-gold);
}
.newsletter-form button {
  padding: 0.875rem 1.75rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}
.newsletter-form button:hover {
  background: var(--color-gold-dark);
}

/* ============================================
   PRODUCT CARDS (Collections Page)
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-rose);
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-rose);
  border-radius: 2px;
  color: var(--color-black);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}
.sort-select {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border: 1px solid var(--color-rose);
  border-radius: 2px;
  color: var(--color-black);
  background: var(--color-white);
  cursor: pointer;
  min-height: 44px;
}
.collection-section {
  margin-bottom: var(--space-4xl);
}
.collection-section h2 {
  margin-bottom: var(--space-sm);
}
.collection-section > p {
  opacity: 0.7;
  margin-bottom: var(--space-xl);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.product-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-info {
  padding: var(--space-lg);
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}
.product-price {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-burgundy);
}

/* ============================================
   FORMS
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}
.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  color: var(--color-black);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-rose);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--color-black);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(107, 29, 58, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}
.form-success.show {
  display: block;
}
.form-success h3 {
  margin-bottom: var(--space-sm);
}
.contact-info-section h3 {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-burgundy);
  margin-top: 2px;
}
.contact-detail a {
  color: var(--color-burgundy);
  font-weight: 400;
}
.contact-detail a:hover {
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-rose);
  color: var(--color-burgundy);
  transition: all var(--transition-fast);
}
.social-links a:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}
.social-links a svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-story-text h2 {
  margin-bottom: var(--space-md);
}
.about-story-text p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.about-story-image {
  border-radius: 8px;
  overflow: hidden;
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-rose);
}
.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: var(--space-2xl);
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-burgundy);
  border: 3px solid var(--color-ivory);
  box-shadow: 0 0 0 2px var(--color-burgundy);
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-burgundy);
  margin-bottom: var(--space-xs);
}
.timeline-item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Values Cards */
.values-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.values-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.values-card:hover {
  box-shadow: var(--shadow-md);
}
.values-card svg {
  width: 40px;
  height: 40px;
  color: var(--color-burgundy);
  margin-bottom: var(--space-md);
}
.values-card h3 {
  margin-bottom: var(--space-sm);
}
.values-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 auto;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-rose);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-black);
  gap: var(--space-md);
  min-height: 44px;
}
.faq-question:hover {
  color: var(--color-burgundy);
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-burgundy);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}
.faq-answer-inner {
  padding: 0 0 var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}
.legal-content h1 {
  color: var(--color-burgundy);
  margin-bottom: var(--space-sm);
}
.legal-date {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: var(--space-3xl);
}
.legal-content h2 {
  font-size: 1.35rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  font-size: 0.95rem;
}
.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}
.legal-content ul li {
  list-style: disc;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Shipping page specifics */
.shipping-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.shipping-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.shipping-card h3 {
  margin-bottom: var(--space-sm);
}
.shipping-card .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-burgundy);
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
}
.shipping-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-burgundy);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
.site-footer .logo-text {
  color: var(--color-white);
  font-size: 1.35rem;
  display: block;
  margin-bottom: var(--space-md);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.footer-links ul li,
.footer-info ul li {
  margin-bottom: var(--space-sm);
}
.footer-links a,
.footer-info a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover,
.footer-info a:hover {
  color: var(--color-gold);
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact a:hover {
  color: var(--color-gold);
}
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-gold);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-burgundy);
  border-color: var(--color-gold);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  text-align: center;
}
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-lg);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 768px) {
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid-container { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-cards { grid-template-columns: repeat(3, 1fr); }
  .shipping-grid { grid-template-columns: repeat(3, 1fr); }

  .timeline::before { left: 50%; transform: translateX(-50%); }
  .timeline-item { padding-left: 0; width: 50%; }
  .timeline-item:nth-child(odd) { padding-right: 40px; text-align: right; }
  .timeline-item:nth-child(even) { margin-left: 50%; padding-left: 40px; }
  .timeline-item:nth-child(odd) .timeline-dot { right: -9px; left: auto; }
  .timeline-item:nth-child(even) .timeline-dot { left: -9px; }
}

/* Desktop */
@media (min-width: 1024px) {
  .section { padding: var(--space-4xl) 0; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .photo-grid-container { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* Mobile nav */
@media (max-width: 767px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-burgundy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 1000;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu a {
    color: var(--color-white);
    font-size: 1rem;
  }
  .site-header.scrolled .nav-menu a {
    color: var(--color-white);
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .nav-overlay.open {
    display: block;
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="email"] {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero {
    background-attachment: scroll;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
  .collection-card:hover,
  .product-card:hover {
    transform: none;
  }
  .collection-card-image img,
  .product-image img,
  .photo-grid-item img {
    transition: none;
  }
}
