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

:root {
  --cream: #FAF8F6;
  --dark: #2C2C2C;
  --primary: #8B7355;
  --accent: #C9A86A;
  --muted: #74716E;
  --luxury-bg: #F5F2ED;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.75;
  color: var(--dark);
  background: #FFFFFF;
  letter-spacing: 0.01em;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-store {
  padding: 0.5rem 1.5rem;
  background: var(--primary);
  color: white !important;
  border-radius: 25px;
}

.nav-store:hover {
  background: var(--accent);
  color: var(--dark) !important;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

.hamburger-line {
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav {
  transform: translateX(0);
}

.mobile-nav-link {
  padding: 1.2rem 1rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(20px);
  animation: slideInMobile 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInMobile {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-link:hover {
  color: var(--primary);
  background: rgba(139, 115, 85, 0.05);
  padding-left: 1.5rem;
}

.mobile-nav-link:active {
  background: rgba(139, 115, 85, 0.1);
  transform: scale(0.98);
}

.mobile-nav-store {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white !important;
  border-radius: 12px;
  margin-top: 1rem;
  border-bottom: none;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.mobile-nav-store:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
  padding-left: 1rem;
}

.nav-admin {
  padding: 0.5rem 1.5rem;
  background: var(--primary);
  color: white !important;
  border-radius: 25px;
}

.nav-admin:hover {
  background: var(--accent);
  color: var(--dark) !important;
}

/* ========================================
   NEW IMMERSIVE HERO SECTION
   ======================================== */
.hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero-center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5E6D3;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-brand-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8rem;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-brand-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  color: #F5E6D3;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.1rem;
  color: #E8E8E8;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-2px);
  backdrop-filter: blur(10px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero-scroll-indicator span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D0D0D0;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

/* Brand Intro Section */
.brand-intro {
  padding: 6rem 2rem;
  background: white;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.intro-headline em {
  font-style: italic;
  color: var(--primary);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

/* Collections Showcase */
.collections-showcase {
  background: var(--luxury-bg);
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
}

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

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card:hover .card-overlay {
  opacity: 1;
}

.explore-cta {
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.card-content {
  padding: 2rem;
}

.card-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.card-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.card-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Founder Story Section */
.founder-story {
  padding: 8rem 2rem;
  background: white;
}

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

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.founder-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.4;
  margin: 1.5rem 0 1rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.quote-attribution {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

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

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Brand Pillars Section */
.brand-pillars {
  padding: 6rem 2rem;
  background: var(--cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.pillar-card {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary);
}

.pillar-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
}

.pillar-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.pillar-link:hover {
  color: var(--accent);
}

/* Philosophy Section */
.philosophy-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #6B5A45 100%);
  color: white;
}

.philosophy-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.philosophy-translation {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.philosophy-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 2rem auto;
}

.philosophy-text {
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: var(--luxury-bg);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.page-wrapper {
  margin-top: 80px;
  padding: 4rem 0;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form.elegant {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group .required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 1px solid #E5E2DE;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #FAFAF9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit.elegant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}

.btn-submit.elegant:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.btn-submit.elegant:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.info-section h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.method-details {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.method-details a,
.method-details span {
  color: var(--dark);
  font-size: 0.95rem;
  text-decoration: none;
}

.method-details a:hover {
  color: var(--primary);
}

.shop-section,
.locations-section {
  background: var(--cream);
}

.info-section p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.shop-link,
.locations-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.shop-link:hover,
.locations-link:hover {
  color: var(--accent);
  gap: 0.75rem;
}

.form-message.success {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.form-message.error {
  background: #FFEBEE;
  color: #C62828;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1rem;
}

/* ========================================
   LEGACY HERO SECTION (kept for other pages)
   ======================================== */
.hero {
  margin-top: 80px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 6rem 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #FAF8F6 0%, #FFFFFF 100%);
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
  color: var(--primary);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 1.1rem 3rem;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sections */
.section {
  padding: 7rem 2rem;
}

.products {
  background: var(--luxury-bg);
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 4rem;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* About Section */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--cream);
  transition: transform 0.3s;
}

.about-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-card p {
  color: var(--muted);
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

a.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: white;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image {
  height: 350px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.product-info p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Locations Preview Section */
.locations-preview {
  background: white;
  text-align: center;
  padding: 5rem 2rem;
}

.view-locations-btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s;
}

.view-locations-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 2rem;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(191,162,122,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: #a8896a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191,162,122,0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-card a {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-grid,
  .products-grid,
  .locations-grid,
  .contact-info,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-info-cards {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
}

/* How Kombucha is Made Section */
.how-made-section {
  background: var(--cream);
}

.how-made-card-container {
  max-width: 600px;
  margin: 0 auto;
}

.how-made-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s;
  text-align: center;
}

.how-made-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.how-made-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.how-made-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.how-made-card p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.learn-more {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}


/* ============================================
   MOBILE OPTIMIZATION & UNIFORM UTILITIES
   ============================================ */

/* Container System */
.container,
.container-wide {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  max-width: 1200px;
}

.container-wide {
  max-width: 1400px;
}

/* Back Link (uniform across all pages) */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.3s;
  font-size: 1rem;
}

.back-link:hover {
  color: var(--primary);
}

/* Page Titles (uniform) */
.page-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 800px;
}

/* Section Spacing */
.section {
  padding: 5rem 2rem;
}

/* Fade In Animation (uniform) */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Mobile Navigation Optimization */
@media (max-width: 968px) {
  /* Hide desktop nav, show mobile toggle */
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav-overlay {
    display: block;
  }
  
  .nav-content {
    padding: 0.75rem 1.5rem;
  }
  
  .logo-img {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .nav-content {
    padding: 0.75rem 1rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .mobile-nav {
    width: 85%;
  }
}

/* Uniform Tablet & Mobile Breakpoints */
@media (max-width: 1024px) {
  .container,
  .container-wide {
    padding: 0 1.5rem;
  }
  
  .page-title {
    font-size: 2.75rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .container,
  .container-wide {
    padding: 0 1rem;
  }
  
  .page-title {
    font-size: 2.25rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .back-link {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.875rem;
  }
  
  .page-subtitle {
    font-size: 0.95rem;
  }
  
  .section {
    padding: 2.5rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .back-link {
    font-size: 0.9rem;
  }
}

/* Touch-friendly buttons on mobile */
@media (max-width: 768px) {
  button,
  .btn,
  a.product-card,
  .how-made-card {
    min-height: 44px; /* Apple HIG minimum touch target */
  }
}


/* Homepage Mobile Optimization */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 3rem 1rem;
    margin-top: 80px;
  }
  
  .hero-cta {
    margin-top: 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .products-grid {
    gap: 1.5rem;
  }
  
  .product-card {
    border-radius: 16px;
  }
  
  .product-image {
    height: 280px;
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .product-info h3 {
    font-size: 1.5rem;
  }
  
  .product-info p {
    font-size: 0.95rem;
  }
  
  .how-made-card {
    padding: 2.5rem 2rem;
  }
  
  .how-made-icon {
    font-size: 3.5rem;
  }
  
  .how-made-card h3 {
    font-size: 1.75rem;
  }
  
  .how-made-card p {
    font-size: 1rem;
  }
  
  .view-locations-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.8rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .products-grid {
    gap: 1.25rem;
  }
  
  .product-image {
    height: 250px;
  }
  
  .product-info {
    padding: 1.25rem;
  }
  
  .product-info h3 {
    font-size: 1.35rem;
  }
  
  .product-info p {
    font-size: 0.9rem;
  }
  
  .how-made-card {
    padding: 2rem 1.5rem;
  }
  
  .how-made-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .how-made-card h3 {
    font-size: 1.5rem;
  }
  
  .how-made-card p {
    font-size: 0.95rem;
  }
  
  .learn-more {
    font-size: 1rem;
  }
  
  .view-locations-btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}

/* ========================================
   NEW HOMEPAGE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
  .hero-brand-title {
    font-size: 6rem;
  }
  
  .hero-brand-subtitle {
    font-size: 2rem;
  }
  
  .story-layout {
    gap: 4rem;
  }
  
  .pillars-grid {
    gap: 2rem;
  }
  
  .philosophy-quote {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .hero-immersive {
    min-height: 90vh;
    padding-top: 80px;
  }
  
  .hero-brand-title {
    font-size: 4.5rem;
  }
  
  .hero-brand-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  .brand-intro {
    padding: 4rem 1.5rem;
  }
  
  .intro-headline {
    font-size: 2rem;
  }
  
  .collections-showcase {
    padding: 4rem 1.5rem;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .card-image-wrapper {
    height: 280px;
  }
  
  .founder-story {
    padding: 4rem 1.5rem;
  }
  
  .story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-image {
    order: -1;
  }
  
  .story-content {
    max-width: 100%;
  }
  
  .founder-quote {
    font-size: 1.75rem;
  }
  
  .brand-pillars {
    padding: 4rem 1.5rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pillar-card {
    padding: 2rem 1.5rem;
  }
  
  .philosophy-section {
    padding: 5rem 1.5rem;
  }
  
  .philosophy-quote {
    font-size: 2.25rem;
  }
  
  .cta-section {
    padding: 4rem 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  /* Contact Page Mobile */
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .btn-submit.elegant {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-brand-title {
    font-size: 3.5rem;
  }
  
  .hero-brand-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-label {
    font-size: 0.75rem;
  }
  
  .intro-headline {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .card-content h3 {
    font-size: 1.5rem;
  }
  
  .founder-quote {
    font-size: 1.5rem;
  }
  
  .philosophy-quote {
    font-size: 1.875rem;
  }
  
  .pillar-icon {
    width: 60px;
    height: 60px;
  }
  
  .pillar-icon svg {
    width: 32px;
    height: 32px;
  }
}