:root {
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F5F0EB;
  --sand: #EDE6DD;
  --gold: #C9A96E;
  --gold-light: #D4BA85;
  --gold-dark: #B08D4F;
  --blush: #F2E4E3;
  --sage: #B5C4B1;
  --lavender: #E4DAF0;
  --charcoal: #1A1A1A;
  --dark: #2C2C2C;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #C8C8C8;
  --gray-100: #F0F0F0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.10);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.5s;
  --container: 1200px;
  --gutter: 24px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section */
.section {
  padding: 120px 0;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

body.preloading {
  overflow: hidden;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo-img {
  max-width: 120px;
  height: auto;
  animation: preloaderPulse 1s ease-in-out infinite;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 6px;
  animation: preloaderPulse 1s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.96); }
}

.preloader-line {
  width: 120px;
  height: 2px;
  background: rgba(201, 169, 110, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-line-fill {
  width: 100%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: preloaderFill 1s ease-in-out infinite;
}

@keyframes preloaderFill {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray-100);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Section Tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Section Title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}

/* Section Description */
.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav:not(.scrolled) .logo-text,
.nav:not(.scrolled) .nav-link {
  color: var(--white);
}

.nav:not(.scrolled) .nav-link:hover {
  color: var(--gold);
}

.nav:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

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

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

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: filter 0.3s;
  object-fit: contain;
}

.nav.scrolled .logo-img {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

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

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

.nav-cta {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger i {
  font-size: 10px;
  transition: transform 0.3s var(--ease);
}

.nav-item-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s var(--ease);
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--gold);
  padding-left: 28px;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  transition: color 0.3s var(--ease);
  padding: 8px 0;
}

.mobile-link:hover {
  color: var(--gold);
}

/* Mobile Dropdown */
.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.mobile-dropdown-content.open {
  max-height: 300px;
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.mobile-dropdown-trigger i {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}

.mobile-dropdown-trigger.open i {
  transform: rotate(180deg);
}

.mobile-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}

.mobile-dropdown-links a {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-500);
  padding: 4px 0;
}

.mobile-dropdown-links a:hover {
  color: var(--gold);
}
/* Landing Hero */
.landing-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.landing-hero-bg {
  position: absolute;
  inset: 0;
}
.landing-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
}
.landing-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 750px;
}
.landing-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: var(--radius-full);
}
.landing-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.landing-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.landing-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.landing-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.landing-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.landing-hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.landing-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Intro Section */
.landing-intro {
  padding: 100px 0;
  background: var(--white);
}
.landing-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.landing-intro-images {
  position: relative;
  height: 500px;
}
.landing-intro-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 65%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.landing-intro-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-intro-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.landing-intro-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-intro-year {
  position: absolute;
  top: 35%;
  right: 8%;
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.landing-intro-year-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.landing-intro-year-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.landing-intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.landing-intro-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.landing-intro-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.landing-intro-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.landing-intro-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.landing-intro-value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}
.landing-intro-value h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.landing-intro-value p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* Marquee */
.landing-marquee {
  padding: 50px 0;
  background: var(--charcoal);
  overflow: hidden;
}
.landing-marquee-track {
  display: flex;
  gap: 60px;
  animation: landMarquee 20s linear infinite;
  width: max-content;
}
.landing-marquee-item {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.landing-marquee-item span { color: var(--gold); font-style: italic; }
@keyframes landMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services */
.landing-services {
  padding: 100px 0;
  background: var(--cream);
}
.landing-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.landing-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all 0.4s var(--ease);
}
.landing-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.landing-service-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--gold);
}
.landing-service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.landing-service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.landing-service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.landing-service-link:hover { gap: 10px; }

/* Embroidery Video Section */
.embroidery-video-section {
  padding: 100px 0;
  background: var(--white);
}
.embroidery-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.embroidery-video-content .section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.embroidery-video-content .section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.embroidery-video-content .section-title em {
  font-style: italic;
  color: var(--gold);
}
.embroidery-video-content .section-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
}
.embroidery-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.embroidery-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.embroidery-features li i {
  color: var(--gold);
  font-size: 14px;
  min-width: 18px;
}
.embroidery-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  box-shadow: var(--shadow-lg);
}
.embroidery-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.embroidery-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.embroidery-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.embroidery-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.embroidery-play-overlay i {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 24px;
  padding-left: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.embroidery-video-thumb:hover .embroidery-play-overlay {
  background: rgba(0,0,0,0.15);
}
.embroidery-video-thumb:hover .embroidery-play-overlay i {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(191,155,81,0.6);
}

/* Stats */
.landing-stats {
  padding: 80px 0;
  background: var(--charcoal);
}
.landing-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.landing-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.landing-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Collections Preview */
.landing-collections {
  padding: 100px 0;
  background: var(--white);
}
.landing-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.landing-col-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 400px;
  text-decoration: none;
  display: block;
}
.landing-col-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.landing-col-card:hover img { transform: scale(1.06); }
.landing-col-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
}
.landing-col-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.landing-col-card-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.landing-col-card-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Testimonials */
.landing-testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.landing-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.landing-testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-xs);
}
.landing-testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}
.landing-testi-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.landing-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.landing-testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--charcoal);
}
.landing-testi-author span {
  font-size: 12px;
  color: var(--gray-500);
}

/* CTA */
.landing-cta {
  padding: 100px 0;
  background: var(--charcoal);
  text-align: center;
}
.landing-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.landing-cta h2 em { font-style: italic; color: var(--gold); }
.landing-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 32px;
}
.landing-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .landing-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .landing-intro-images { height: 400px; }
  .landing-services-grid { grid-template-columns: repeat(2, 1fr); }
  .embroidery-video-grid { grid-template-columns: 1fr; gap: 40px; }
  .landing-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-collections-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .landing-hero { min-height: 85vh; }
  .landing-hero-actions { flex-direction: column; }
  .landing-hero-content { padding-top: 80px; }
  .landing-intro-images { height: 320px; }
  .landing-services-grid { grid-template-columns: 1fr; }
  .embroidery-play-btn { width: 64px; height: 64px; }
  .embroidery-play-btn i { font-size: 22px; }
  .embroidery-video-content .section-title { font-size: 28px; }
  .embroidery-features { margin-bottom: 24px; }
  .landing-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .landing-collections-grid { grid-template-columns: 1fr; }
  .landing-testi-grid { grid-template-columns: 1fr; }
  .landing-cta { padding: 64px 0; }
}
@media (max-width: 480px) {
  .landing-hero-content { padding-top: 70px; }
  .landing-intro-images { height: 260px; }
  .landing-intro-year { width: 72px; height: 72px; }
  .landing-intro-year-num { font-size: 24px; }
  .landing-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .landing-stat-num { font-size: 32px; }
  .landing-stat-item { padding: 20px 12px; }
  .landing-testimonials { padding: 64px 0; }
  .landing-cta h2 { font-size: 28px; }
}
/* Collection Hero (shorter hero for collection pages) */
.collection-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal);
  padding-top: 80px;
}

.collection-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.collection-hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Page Hero (shorter hero for other pages) */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

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

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* Collection Filters */
.collection-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

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

.product-card-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.product-card-info {
  padding: 16px 20px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  transition: color 0.3s var(--ease);
}

.product-card:hover .product-card-title {
  color: var(--gold);
}

.product-card-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .product-card-cta {
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s var(--ease);
  }

  .product-card:hover .product-card-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-tag.tag-new {
  background: var(--sage);
  color: var(--white);
}

.product-tag.tag-sale {
  background: var(--blush);
  color: var(--charcoal);
}

.product-tag.tag-hot,
.product-tag.tag-trending {
  background: var(--gold);
  color: var(--white);
}

.product-tag.tag-bestseller {
  background: var(--charcoal);
  color: var(--white);
}

.product-tag.tag-limited {
  background: var(--blush);
  color: var(--charcoal);
}

.product-card-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  z-index: 2;
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card-action {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.product-card-action:hover {
  background: var(--gold);
  color: var(--white);
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  transition: color 0.3s var(--ease);
}

.product-card:hover .product-card-body h3 {
  color: var(--gold);
}

.product-card-body .product-category {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-price .current {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}

.product-price .original {
  font-size: 14px;
  color: var(--gray-300);
  text-decoration: line-through;
}

.product-price .discount {
  font-size: 12px;
  font-weight: 600;
  color: #E74C3C;
}

/* Design Modal */
.design-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.design-modal.active {
  opacity: 1;
  visibility: visible;
}
.design-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.design-modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}
.design-modal.active .design-modal-content {
  transform: translateY(0);
}
.design-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
}
.design-modal-close:hover {
  background: var(--gold);
  color: var(--white);
}
.design-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.design-modal-subtitle {
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.design-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.design-modal-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.design-modal-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.design-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.design-modal-btn:hover {
  background: #B08D4F;
  transform: translateY(-2px);
}

/* Responsive: Design Modal */
@media (max-width: 768px) {
  .design-modal-content {
    padding: 28px 20px;
  }
  .design-modal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .design-modal-grid img {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .design-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive: Product Grid */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-hero {
    min-height: 300px;
  }

  .collection-filters {
    flex-wrap: wrap;
  }

  .product-card-img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-img {
    height: 280px;
  }
}
/* Gallery Page */
.gallery-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--charcoal);
  overflow: hidden;
}

.gallery-hero-bg {
  position: absolute;
  inset: 0;
}

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

.gallery-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}

.gallery-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.gallery-hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* Filter Bar */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 0;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--gray-500);
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.gallery-filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.gallery-filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Masonry Grid */
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.gallery-masonry-item:hover {
  transform: scale(1.02);
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.6s var(--ease);
}

.gallery-masonry-item:hover img {
  transform: scale(1.06);
}

.gallery-masonry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}

.gallery-masonry-item:hover .gallery-masonry-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.g-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.g-lightbox.active {
  display: flex;
}

.g-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.g-lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.g-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.g-lightbox-close:hover {
  background: var(--gold);
}

.g-lightbox-prev,
.g-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.g-lightbox-prev { left: 24px; }
.g-lightbox-next { right: 24px; }

.g-lightbox-prev:hover,
.g-lightbox-next:hover {
  background: var(--gold);
}

.g-lightbox-caption {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-masonry {
    columns: 3;
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    columns: 2;
    column-gap: 12px;
  }
  .gallery-masonry-item {
    margin-bottom: 12px;
  }
  .gallery-hero {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    columns: 1;
  }
  .g-lightbox-prev { left: 8px; }
  .g-lightbox-next { right: 8px; }
}
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.c-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.c-card:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.c-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.c-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.c-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.form-group input:focus ~ .form-border,
.form-group textarea:focus ~ .form-border {
  width: 100%;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .logo-img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 0;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
  border-color: var(--gold);
}

.footer-newsletter-form button {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.3s var(--ease);
}

.footer-newsletter-form button:hover {
  background: var(--gold-dark);
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s var(--ease);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s var(--ease);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.btt {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s var(--ease);
}

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

.btt:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
/* Responsive: 1024px */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(38px, 6vw, 64px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 400px;
  }

  .about-content {
    padding-right: 0;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .g-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(8px);
  }

  .nav-item-dropdown:hover .dropdown-menu {
    transform: translateX(0) translateY(0);
  }
}

/* Responsive: 768px */
@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }

  .logo-img {
    height: 28px;
  }

  .nav {
    padding: 14px 0;
  }

  .nav.scrolled {
    padding: 10px 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-desc {
    font-size: 16px;
  }

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

  .hero-scroll {
    display: none;
  }

  .about-images {
    height: 320px;
  }

  .about-img-accent {
    width: 150px;
    height: 200px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-num {
    font-size: 28px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .col-card-img {
    height: 320px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .timeline-track {
    left: 24px;
  }

  .t-dot {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .g-item:nth-child(1) {
    grid-column: span 2;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

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

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

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

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-hero {
    min-height: 240px;
    padding-top: 70px;
  }

  .collection-hero-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .collection-hero-subtitle {
    font-size: 14px;
    padding: 0 16px;
  }

  .collection-filters {
    flex-wrap: wrap;
  }

  .design-modal-content {
    padding: 28px 20px;
    width: 95%;
  }

  .design-modal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .design-modal-grid img {
    height: 150px;
  }

  .design-modal-title {
    font-size: 22px;
  }
}

/* Responsive: 480px */
@media (max-width: 480px) {
  .logo-img {
    height: 24px;
  }

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

  .hero-badge {
    font-size: 10px;
    padding: 6px 16px;
  }

  .about-images {
    height: 260px;
  }

  .about-badge {
    top: -12px;
    right: 20px;
    padding: 14px;
  }

  .about-badge-number {
    font-size: 28px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 16px;
  }

  .col-card-img {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .g-item:nth-child(1) {
    grid-column: span 1;
  }

  .mobile-link {
    font-size: 28px;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 20px;
    right: 20px;
  }

  .btt {
    width: 40px;
    height: 48px;
    font-size: 16px;
    bottom: 20px;
    right: 76px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .collection-hero {
    min-height: 200px;
    padding-top: 64px;
  }

  .design-modal-grid {
    grid-template-columns: 1fr;
  }

  .design-modal-grid img {
    height: 200px;
  }

  .design-modal-content {
    padding: 24px 16px;
  }

  .product-card-img {
    height: 280px;
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }

  .lb-close {
    top: -40px;
    right: 0;
  }
}

/* Prefers 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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg-img {
    transform: none;
  }

  .hero:hover .hero-bg-img {
    transform: none;
  }

  .hero-scroll-line::after {
    animation: none;
  }

  .preloader-spinner {
    animation: spin 1.2s linear infinite;
  }
}
