/* WINESKIN - LUXURY LEATHER GOODS */
:root {
  --burgundy: #5C1A1B;
  --burgundy-dark: #3D1112;
  --cream: #F5F0E8;
  --beige: #E8DCC8;
  --beige-light: #EDE3D4;
  --dark: #1A0A0A;
  --grey: #4A4A4A;
  --light-grey: #B8A99A;
  --whatsapp: #25D366;
  --wine: #6B1A1A;
  --wine-dark: #4A1010;
  --black: #1A1210;
  --gray: #6B6560;
  --off-white: #FAF8F5;
  --light-gray: #E8E4DF;
  --navbar-bg: #3B1A1A;
  --navbar-text: #E8D5B0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
@media (pointer: coarse) { * { cursor: auto; } }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Jost", sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--burgundy);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--beige);
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: loaderPulse 1.5s ease-out forwards;
}
@keyframes loaderPulse {
  0% { opacity: 0; transform: scale(0.9); }
  30% { opacity: 1; transform: scale(1); }
  70% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* Custom Cursor */
#cursor-dot {
  position: fixed;
  background: var(--burgundy);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#cursor-ring {
  position: fixed;
  border: 2px solid var(--burgundy);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-width 0.2s, background 0.2s, transform 0.08s ease-out;
}
#cursor-dot.hover, #cursor-ring.hover { width: 56px; height: 56px; }
#cursor-dot.hidden, #cursor-ring.hidden { opacity: 0; }
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 3000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Announcement Bar */
.announcement-bar {
  background: var(--burgundy);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  font-weight: 400;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: var(--navbar-bg);
  height: 96px;
  border-bottom: 1px solid rgba(232, 213, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: all 0.3s ease;
  position: relative;
}

/* Leather texture overlay */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeBlend mode='multiply'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15' fill='%23000000'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.navbar.scrolled {
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.nav-right { justify-content: flex-end; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-right: 40px;
}
.nav-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--navbar-text);
  text-transform: uppercase;
}
.nav-logo {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}
.navbar.scrolled .nav-logo { height: 56px; }
.nav-item { position: relative; }
.nav-link {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--navbar-text);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  padding: 24px 0;
  display: block;
  position: relative;
  z-index: 2;
}
.nav-link:hover, .nav-link.active { color: var(--cream); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navbar-bg);
  min-width: 220px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid rgba(232, 213, 176, 0.1);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--navbar-text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(232, 213, 176, 0.2);
}
.dropdown a {
  display: block;
  padding: 8px 0;
  color: var(--navbar-text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.dropdown a:hover { color: var(--cream); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.nav-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navbar-text);
  text-decoration: none;
}
.nav-icon svg { width: 100%; height: 100%; }
.nav-icon:hover {
  transform: scale(1.1);
  color: var(--cream);
}
.hamburger { display: none; }
.desktop-only { display: block; }

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 18, 16, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-container {
  width: 90%;
  max-width: 700px;
  position: relative;
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--beige);
  padding: 20px 0;
  font-size: 32px;
  color: white;
  font-family: "Cormorant Garamond", serif;
  outline: none;
}
.search-input::placeholder { color: var(--light-grey); }
.search-close {
  position: absolute;
  top: -60px;
  right: 0;
  color: var(--beige);
  font-size: 36px;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}
.search-close:hover { color: white; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  z-index: 2000;
  transition: right 0.3s ease-out;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.mobile-menu.active { right: 0; }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--dark);
}
.mobile-menu-close svg { width: 100%; height: 100%; }
.mobile-menu-nav { display: flex; flex-direction: column; }
.mobile-menu-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--dark);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.3s ease;
  letter-spacing: 3px;
  text-transform: uppercase;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.mobile-menu-nav a:hover { color: var(--burgundy); }

/* Buttons */
.btn {
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: "Jost", sans-serif;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  min-width: 44px;
}
.btn-primary {
  background: var(--beige);
  color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--burgundy);
}
.btn-wine {
  background: var(--burgundy);
  color: var(--cream);
}
.btn-wine:hover { background: var(--burgundy-dark); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: 100%;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1da851; }
.btn-whatsapp svg { width: 18px; height: 18px; }


/* Hero Section */
.hero {
  width: 100%;
  min-height: 90vh;
  height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 1.5s ease-out;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(92, 26, 27, 0.85) 0%, rgba(92, 26, 27, 0.4) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
  animation: fadeUp 1s ease-out;
}
.hero-eyebrow {
  color: var(--beige);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 1s ease-out 0.2s both;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 24px;
}
.hero h1 .italic {
  color: var(--beige-light);
  font-style: italic;
  display: block;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  animation: fadeUp 1s ease-out 0.4s both;
}
.hero h1 .bold {
  color: white;
  font-weight: 300;
  display: block;
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1.1;
  animation: fadeUp 1s ease-out 0.6s both;
}
.hero p {
  color: var(--beige-light);
  font-size: 14px;
  max-width: 420px;
  line-height: 1.9;
  margin-bottom: 32px;
  animation: fadeUp 1s ease-out 0.8s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 1s both;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-indicator .dot {
  width: 8px;
  height: 8px;
  background: var(--beige);
  border-radius: 50%;
  animation: bounce 1.5s ease infinite;
}
.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: var(--beige);
  opacity: 0.5;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--burgundy);
  margin: 0 auto 16px;
}
.section-header p {
  color: var(--grey);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Categories */
.categories {
  padding: 100px 48px;
  background: white;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(26, 10, 10, 0.9) 0%, transparent 100%);
  transition: background 0.4s ease;
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(26, 10, 10, 0.95) 0%, rgba(26, 10, 10, 0.3) 100%);
}
.category-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
}
.category-label span {
  display: block;
  color: var(--beige);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.category-label h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: white;
}
.category-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--cream);
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.4s ease;
  opacity: 0;
}
.category-card:hover .category-btn { bottom: 100px; opacity: 1; }


/* Featured Products */
.featured { padding: 100px 48px; background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: white;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(92, 26, 27, 0.12);
  transform: translateY(-4px);
}
.product-card.hidden { display: none; }
.product-image-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-gray);
}
.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image-container img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-info { padding: 24px; }
.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 12px;
}
.enquire-text {
  font-size: 14px;
  color: var(--burgundy);
  font-style: italic;
  margin-bottom: 12px;
}

/* Banner Strip */
.banner-strip {
  background: var(--burgundy);
  padding: 64px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.banner-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
}
.banner-content h2 em { color: var(--beige); font-style: italic; }
.banner-content p {
  color: rgba(232, 220, 200, 0.8);
  font-size: 14px;
  max-width: 400px;
  line-height: 1.7;
}
.banner-btn { background: var(--beige); color: var(--burgundy); }
.banner-btn:hover { background: var(--cream); }

/* Craft/Philosophy */
.craft-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.craft-image {
  background-size: cover;
  background-position: center;
  min-height: 560px;
}
.craft-content {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.craft-eyebrow {
  color: var(--burgundy);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.craft-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 24px;
}
.craft-content p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.9;
}
.craft-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
}
.stat-item { text-align: center; }
.stat-icon {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--burgundy);
  display: block;
  margin-bottom: 8px;
}
.stat-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
  margin: 0;
}

/* Marquee */
.marquee-strip {
  background: var(--burgundy-dark);
  padding: 24px 0;
  overflow: hidden;
}
.marquee-text {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-text span {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  color: var(--beige);
  letter-spacing: 3px;
  padding: 0 24px;
}

/* Testimonials */
.testimonials { padding: 100px 48px; background: white; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  border: 1px solid var(--light-gray);
  padding: 36px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--burgundy);
  box-shadow: 0 8px 24px rgba(92, 26, 27, 0.08);
}
.testimonial-stars {
  color: var(--burgundy);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
}

/* Instagram */
.instagram { padding: 100px 48px; background: var(--cream); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item:hover img { transform: scale(1.05); }
.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 26, 27, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--beige);
}

/* Newsletter */
.newsletter {
  background: var(--beige);
  padding: 72px 48px;
  text-align: center;
}
.newsletter h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}
.newsletter > p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid var(--dark);
  background: white;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  outline: none;
  min-height: 48px;
}
.newsletter-form input::placeholder { color: var(--grey); }
.newsletter-form input:focus {
  border-color: var(--burgundy);
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}
.newsletter-form button {
  background: var(--burgundy);
  color: var(--cream);
  padding: 16px 32px;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  min-height: 48px;
}
.newsletter-form button:hover { background: var(--burgundy-dark); }
.newsletter-message {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
}
.newsletter-message.success { color: var(--burgundy); }
.newsletter-message.error { color: #d32f2f; }

/* Footer */
.footer { background: var(--dark); padding: 64px 80px 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 72px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(84%) sepia(15%) saturate(394%) hue-rotate(352deg) brightness(94%) contrast(91%);
}
.footer-brand h3 {
  color: var(--beige);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-brand p {
  color: rgba(232, 220, 200, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 220, 200, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--burgundy); border-color: var(--burgundy); }
.footer-social svg { width: 18px; height: 18px; }
.footer-column h4 {
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a {
  color: rgba(232, 220, 200, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  padding: 10px 0;
  display: block;
}
.footer-column a:hover { color: var(--beige); }
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 220, 200, 0.2);
}
.footer-bottom p {
  color: rgba(232, 220, 200, 0.5);
  font-size: 11px;
  text-align: center;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: whatsappPulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  color: white;
}


/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .navbar { padding: 0 24px; height: 80px; }
  .nav-logo { height: 55px; }
  .nav-link { font-size: 12px; letter-spacing: 2px; }
  .dropdown { display: none; }
  
  .hero { min-height: 80vh; height: 80vh; }
  .hero-content { padding: 0 48px; }
  
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  
  .craft-split { grid-template-columns: 45% 55%; }
  .craft-content { padding: 60px 40px; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile (0 - 767px) */
@media (max-width: 767px) {
  /* Announcement Bar */
  .announcement-bar { height: 32px; }
  .marquee-item { font-size: 11px; letter-spacing: 2px; padding: 0 24px; }
  
  /* Navigation */
  .navbar { height: 70px; padding: 0 16px; }
  .nav-logo { height: 44px; }
  .nav-left { display: flex; align-items: center; }
  .nav-left .nav-item { display: none; }
  .nav-left .nav-brand { margin-right: 0; display: flex; align-items: center; gap: 8px; }
  .nav-wordmark { display: block; font-size: 12px; }
  .nav-right .desktop-only { display: none; }
  .hamburger { display: flex !important; }
  .nav-icons { gap: 16px; }
  .nav-icon { width: 24px; height: 24px; }
  
  /* Hero */
  .hero { min-height: 70vh; height: 70vh; }
  .hero-content { padding: 0 20px; bottom: 30px; position: absolute; left: 0; right: 0; max-width: none; }
  .hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  }
  .hero-eyebrow { font-size: 10px; letter-spacing: 4px; }
  .hero h1 .italic { font-size: 20px; }
  .hero h1 .bold { font-size: 32px; line-height: 1.1; margin-bottom: 16px; }
  .hero p { font-size: 13px; line-height: 1.6; max-width: 100%; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; height: 48px; }
  .scroll-indicator { left: 20px; bottom: 20px; }
  
  /* Categories */
  .categories { padding: 60px 16px; }
  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .category-card { aspect-ratio: 3/4; }
  .category-label { padding: 20px; }
  .category-label h3 { font-size: 20px; }
  .category-label span { font-size: 10px; letter-spacing: 3px; }
  .category-btn { display: none; }
  
  /* Products */
  .featured { padding: 60px 16px; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-image-container { aspect-ratio: 4/5; }
  .product-badge { top: 12px; left: 12px; padding: 6px 14px; font-size: 10px; }
  .product-name { font-size: 20px; }
  .product-category { font-size: 11px; }
  .enquire-text { font-size: 14px; }
  
  /* Banner */
  .banner-strip { padding: 48px 20px; flex-direction: column; text-align: center; }
  .banner-content h2 { font-size: 28px; }
  .banner-content p { font-size: 13px; }
  
  /* Craft/Philosophy */
  .craft-split { grid-template-columns: 1fr; }
  .craft-image { min-height: 40vh; order: 1; }
  .craft-content { padding: 40px 20px; order: 2; }
  .craft-eyebrow { font-size: 10px; letter-spacing: 4px; text-align: center; }
  .craft-content h2 { font-size: 26px; text-align: center; line-height: 1.3; }
  .craft-content p { font-size: 14px; line-height: 1.7; text-align: left; }
  .craft-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 32px; padding-top: 32px; }
  .stat-icon { font-size: 16px; }
  .stat-item h3 { font-size: 28px; }
  .stat-item p { font-size: 10px; letter-spacing: 2px; }
  
  /* Marquee */
  .marquee-text span { font-size: 13px; letter-spacing: 3px; padding: 0 12px; }
  
  /* Testimonials */
  .testimonials { padding: 60px 16px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px; margin: 0 4px; }
  .testimonial-stars { font-size: 18px; margin-bottom: 16px; }
  .testimonial-card blockquote { font-size: 16px; line-height: 1.6; }
  .testimonial-author { font-size: 11px; letter-spacing: 2px; margin-top: 16px; }
  .section-header h2 { font-size: 28px; }
  
  /* Instagram */
  .instagram { padding: 60px 16px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  
  /* Newsletter */
  .newsletter { padding: 48px 20px; }
  .newsletter h2 { font-size: 26px; }
  .newsletter > p { font-size: 14px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }
  
  /* Footer */
  .footer { padding: 48px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer-brand img { margin: 0 auto 16px; height: 60px; }
  .footer-social { justify-content: center; }
  .footer-column h4 { margin-top: 8px; }
  .footer-column a { padding: 8px 0; }
  
  /* Floating WhatsApp */
  .floating-whatsapp { bottom: 16px; right: 16px; }
}

/* Small Mobile (0 - 375px) */
@media (max-width: 375px) {
  .hero h1 .bold { font-size: 28px; }
  .section-header h2 { font-size: 24px; }
  .craft-content h2 { font-size: 22px; }
  .stat-item h3 { font-size: 24px; }
  .banner-content h2 { font-size: 24px; }
}

/* Desktop Large (1440px+) */
@media (min-width: 1440px) {
  .category-grid,
  .product-grid,
  .testimonial-grid { max-width: 1400px; }
  .hero-content { max-width: 800px; }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-content,
  .marquee-text { animation: none; }
}


/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .navbar { padding: 0 24px; height: 80px; }
  .nav-logo { height: 55px; }
  .nav-link { font-size: 12px; letter-spacing: 2px; }
  .dropdown { display: none; }
  .hero { min-height: 80vh; height: 80vh; }
  .hero-content { padding: 0 48px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .craft-split { grid-template-columns: 45% 55%; }
  .craft-content { padding: 60px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile (0 - 767px) */
@media (max-width: 767px) {
  .announcement-bar { height: 32px; }
  .marquee-item { font-size: 11px; letter-spacing: 2px; padding: 0 24px; }
  .navbar { height: 70px; padding: 0 16px; }
  .nav-logo { height: 44px; }
  .nav-left { display: flex; align-items: center; }
  .nav-left .nav-item { display: none; }
  .nav-left .nav-brand { margin-right: 0; display: flex; align-items: center; gap: 8px; }
  .nav-wordmark { display: block; font-size: 12px; }
  .nav-right .desktop-only { display: none; }
  .hamburger { display: flex !important; }
  .nav-icons { gap: 16px; }
  .nav-icon { width: 24px; height: 24px; }
  .hero { min-height: 70vh; height: 70vh; }
  .hero-content { padding: 0 20px; bottom: 30px; position: absolute; left: 0; right: 0; max-width: none; }
  .hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
  .hero-eyebrow { font-size: 10px; letter-spacing: 4px; }
  .hero h1 .italic { font-size: 20px; }
  .hero h1 .bold { font-size: 32px; line-height: 1.1; margin-bottom: 16px; }
  .hero p { font-size: 13px; line-height: 1.6; max-width: 100%; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; height: 48px; }
  .scroll-indicator { left: 20px; bottom: 20px; }
  .categories { padding: 60px 16px; }
  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .category-label { padding: 20px; }
  .category-label h3 { font-size: 20px; }
  .category-label span { font-size: 10px; letter-spacing: 3px; }
  .category-btn { display: none; }
  .featured { padding: 60px 16px; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-image-container { aspect-ratio: 4/5; }
  .banner-strip { padding: 48px 20px; flex-direction: column; text-align: center; }
  .banner-content h2 { font-size: 28px; }
  .craft-split { grid-template-columns: 1fr; }
  .craft-image { min-height: 40vh; order: 1; }
  .craft-content { padding: 40px 20px; order: 2; }
  .craft-content h2 { font-size: 26px; text-align: center; }
  .craft-stats { gap: 8px; }
  .stat-item h3 { font-size: 28px; }
  .marquee-text span { font-size: 13px; letter-spacing: 3px; }
  .testimonials { padding: 60px 16px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .instagram { padding: 60px 16px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .newsletter { padding: 48px 20px; }
  .newsletter-form { flex-direction: column; }
  .footer { padding: 48px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .floating-whatsapp { bottom: 16px; right: 16px; }
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

