/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary: #995838;
  --secondary: #f7edd6;
  --accent: #c9a962;
  --accent-light: #d4b978;
  --accent-dark: #b8944d;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --black: #000000;
  --white: #ffffff;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--secondary);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 15px;
}

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

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

ul {
  list-style: none;
}

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

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.preloader-bar {
  width: auto;
  height: 1px;
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}

.preloader-bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--accent);
  animation: preloaderBar 1.5s ease forwards;
}

@keyframes preloaderBar {
  to { width: 100%; }
}

/* ==================== TYPOGRAPHY ==================== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-tag.light {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: var(--transition);
}

.section-link:hover {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--secondary);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--transition);
}

.btn-link:hover {
  gap: 0.75rem;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 5%;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--primary);
  backdrop-filter: blur(20px);
  padding: 1rem 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0.3em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link, .nav-link2 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  position: relative;
  transition: var(--transition);
}

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

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

.nav-drop {
  position: relative;
}

.nav-drop-m {
  display: none;
}

.nav-drop:hover .nav-dropdown {
  display: block;
}

.nav-drop:hover .nav-link {
  color: var(--accent-dark);
}

.nav-drop .nav-dropdown {
  display: none;
  position: absolute;
  width: 400px;
  padding: 24px 0px;
  left: -50%;
  z-index: 100;
}

.nav-dropdown-scrolled {
  background-color: var(--primary);
}

.nav-drop .nav-dropdown a {
  padding: 12px 24px;
  display: inline-block;
}

.nav-drop .nav-dropdown a:hover {
  color: var(--accent-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-icon {
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.nav-icon:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 2000;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--secondary);
  transition: var(--transition);
}

/* #navMenu{
  display: none;
} */

.mobile-nav-menu {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  display: none;
}


@media (max-width: 1024px) {
  .nav-drop {
    display: none;
  }
  .nav-drop-m {
    display: flex;
  }

  .header.scrolled {
    background: var(--primary);
    backdrop-filter: none;
    padding: 1rem 5%;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.7s; }
.title-line:nth-child(2) { animation-delay: 0.9s; }

.title-line.accent {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

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

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


@media (max-width: 1024px) {
  .hero-scroll {
    bottom: 1rem;
  }
}

/* ==================== MARQUEE ==================== */
.marquee {
  background: var(--black);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.marquee-track .dot {
  color: var(--accent);
  font-size: 0.5rem;
}

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

/* ==================== ABOUT ==================== */
.about {
  padding: 8rem 5%;
  background: var(--secondary);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-text {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.about-images {
  position: relative;
}

.about-image.main {
  position: relative;
  z-index: 2;
  box-shadow: 10px 0px 24px rgba(0, 0, 0, 0.8);
}

.about-image.main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image.secondary {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.about-image.secondary img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ==================== COLLECTIONS ==================== */
.collections {
  padding: 8rem 5%;
  background: var(--primary);
  background-image: url('../img/h.webp');
  background-position: center;
  background-size: cover;
  position: relative;
}

.collections-overlay {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.collections .section-title{
  color: var(--secondary);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 0px 10px var(--black);
}

.collection-card:hover {
  box-shadow: 0px 0px 20px var(--secondary);
}

.collection-card.featured {
  grid-column: span 1;
}

.card-image {
  position: absolute;
  inset: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--transition);
}

.collection-card:hover .card-link {
  gap: 0.75rem;
}

/* ==================== FEATURED PRODUCTS ==================== */
.featured {
  padding: 8rem 5%;
  background: var(--secondary);
}

.featured .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1400px;
  text-align: left;
}

.featured .section-header > div {
  display: flex;
  flex-direction: column;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  cursor: pointer;
  box-shadow: 0px 0px 10px var(--gray-500);
  background-color: var(--primary);
}

.product-card:hover {
  box-shadow: 0px 0px 24px var(--accent-dark);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 1.25rem;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info {
  text-align: center;    padding-bottom: 12px;
}

.product-brand {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-dark);
}

/* ==================== JOURNAL ==================== */
.journal {
  padding: 8rem 5%;
  background: var(--secondary);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.journal-card {
  background: var(--white);
}

.journal-card {
  background: var(--white);
  box-shadow: 0px 0px 10px var(--gray-500);
}

.journal-card:hover {
  box-shadow: 0px 0px 24px var(--accent-dark);
}

.journal-image {
  overflow: hidden;
}

.journal-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.journal-content {
  padding: 1.5rem;
}

.journal-date {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.journal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  margin: 0.75rem 0;
  line-height: 1.4;
}

.journal-excerpt {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.journal-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: var(--transition);
}

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

/* ==================== CTA ==================== */
.cta {
  position: relative;
  padding: 10rem 5%;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--secondary);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-title em {
  font-style: italic;
  color: var(--accent);
}

.cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-details {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.cta-detail {
  text-align: center;
}

.detail-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ==================== INSTAGRAM ==================== */
.instagram {
  padding: 6rem 5% 8rem;
  background: var(--primary);
}

.instagram .section-title{
  color: var(--secondary);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0px 0px 10px var(--black);
}

.instagram-item:hover {
  box-shadow: 0px 0px 20px var(--secondary);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.instagram-item:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 6rem 5% 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 3fr repeat(2, 1fr) 2fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 2rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-contact-inline {
  margin-bottom: 1.5rem;
}

.footer-contact-inline a {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-contact-inline a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  transition: var(--transition);
  background: linear-gradient(140deg, var(--primary), var(--black));
  /* background-color: var(--primary); */
  box-shadow: 0px 0px 10px var(--accent-light);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0px 0px 24px var(--accent-light);
}

.footer-column h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.footer-column a,
.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
  padding: 0.4rem 0;
  transition: var(--transition);
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgb(120, 64, 1);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--accent-dark);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--accent-dark);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary);
}

/* ==================== BESPOKE JEWELLERY CTA ==================== */
.bespoke-cta {
  padding: 8rem 5%;
  background: var(--primary);
}

.bespoke-cta .section-title{
  color: var(--secondary);
}

.bespoke-cta .section-header {
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--white);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.bespoke-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* Before/After Slider */
.before-after-slider {
  text-align: center;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: ew-resize;
  background: var(--secondary);
  box-shadow: 0px 0px 10px var(--black);
}

.slider-container:hover {
  box-shadow: 0px 0px 20px var(--secondary);
}

.slider-image {
  position: absolute;
  inset: 0;
}

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

.slider-image.before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.slider-image.after {
  z-index: 0;
}

.slider-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--secondary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slider-image.before .slider-label {
  left: 1rem;
}

.slider-image.after .slider-label {
  right: 1rem;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.handle-line {
  width: 2px;
  flex: 1;
  background: var(--accent);
}

.handle-circle {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-caption {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--secondary);
  font-style: italic;
}

/* Bespoke Form */
.bespoke-form-container {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0px 0px 10px var(--black);
}

.bespoke-form-container:hover {
  box-shadow: 0px 0px 20px var(--secondary);
}

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

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.bespoke-form .form-group {
  margin-bottom: 1rem;
}

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

.bespoke-form input,
.bespoke-form select,
.bespoke-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.bespoke-form input:focus,
.bespoke-form select:focus,
.bespoke-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--secondary);
}

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

.bespoke-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.bespoke-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ==================== SELL YOUR JEWELLERY ==================== */
.sell-jewellery {
  padding: 8rem 5%;
  background: var(--secondary);
}

.sell-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  box-shadow: 0px 0px 10px var(--gray-500);
}

.sell-container:hover {
  box-shadow: 0px 0px 10px var(--accent-dark);
}

.sell-image {
  position: relative;
  min-height: 600px;
}

.sell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.sell-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.sell-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sell-badge .badge-icon {
  font-size: 1.5rem;
}

.sell-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.sell-content {
  padding: 4rem;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sell-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sell-features {
  margin-bottom: 2.5rem;
}

.sell-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.sell-features li:last-child {
  border-bottom: none;
}

.sell-features svg {
  color: var(--accent);
  flex-shrink: 0;
}

.sell-features span {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

.sell-form .form-group {
  margin-bottom: 1rem;
}

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

.sell-form input,
.sell-form select,
.sell-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  background: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.sell-form input:focus,
.sell-form select:focus,
.sell-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.sell-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.sell-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* ==================== CONTACT US CTA ==================== */
.contact-cta {
  padding: 6rem 5%;
  background: var(--black);
  text-align: center;
}

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

.contact-cta .section-tag {
  color: var(--accent);
}

.contact-cta .section-title {
  color: var(--secondary);
}

.contact-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.contact-buttons .btn {
  min-width: 180px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collection-card.featured {
    grid-column: span 2;
    height: 400px;
  }
  
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bespoke-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .bespoke-grid .before-after-slider:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-images {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .journal-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .bespoke-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .bespoke-grid .before-after-slider:last-child {
    grid-column: span 1;
    max-width: none;
  }
  
  .sell-container {
    grid-template-columns: 1fr;
  }
  
  .sell-image {
    min-height: 400px;
  }
  
  .sell-content {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .collection-card,
  .collection-card.featured {
    grid-column: span 1;
    height: 400px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .featured .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .cta-details {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-tagline {
    max-width: none;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bespoke-form-container {
    padding: 2rem;
  }
  
  .bespoke-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .sell-content {
    padding: 2rem;
  }
  
  .sell-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .sell-badge {
    bottom: 1rem;
    left: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .about-image.secondary {
    display: none;
  }
  
  .marquee-track span {
    font-size: 0.8rem;
  }
}
