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

/* Image Loading Optimization */
img {
  transition: opacity 0.4s ease, filter 0.4s ease;
}

img[loading="lazy"] {
  opacity: 0.3;
  filter: blur(8px);
}

img[loading="lazy"].loaded {
  opacity: 1;
  filter: blur(0);
}

body {
  background: #0b0b0b;
  color: #d4cfc4;
  font-family: 'Lora', serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  letter-spacing: 0.3px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===================== NAVIGATION ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 3000;
  padding: 20px 8vw;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-link {
  color: #d4cfc4;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  cursor: pointer;
  font-weight: 300;
  position: relative;
}

.nav-link:hover {
  color: #d4a574;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #d4a574;
  transition: width 0.4s ease;
}

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

/* UPDATED: slightly reduce visual weight of nav brand so it doesn't compete with headline */
.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-family: 'Cinzel', serif;
  color: rgba(212, 207, 196, 0.92);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: #d4cfc4;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d4a574;
}

.brand {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
/* Hide mobile navigation by default (desktop) */
.hamburger,
.mobile-nav {
  display: none;

}


/* ===================== BRAND INTRODUCTION ===================== */
.brand-intro {
  padding: 120px 8vw 80px;
  background: #0b0b0b;
  text-align: left;
  padding-left: clamp(8vw, 12vw, 16vw);
}

.intro-content {
  margin: 0 auto;
  text-align: left;
  color: #a89f95;
  font-family: 'Lora', serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  max-width: 620px;
}

.intro-content p {
  margin-bottom: 1.5em;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('images/hero-background.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
              radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.02) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

/* SUBTLE MICRO-ADJUSTMENTS */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 36%;
  padding-left: 8vw;
  transform: translateY(-3vh);
}

.hero-text .brand {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  opacity: 0;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: rgba(245, 243, 240, 0.9);
  margin-bottom: 40px;
}

.headline-1, .headline-2 {
  display: block;
  opacity: 0;
}


.hero-text .headline {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  font-family: 'Cinzel', serif;
  color: #f5f3f0;
  line-height: 1.1;
  margin-bottom: 50px;
}

.hero-support {
  margin-top: 10px;
  color: #a89f95;
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0;
  font-weight: 300;
  max-width: 45ch;
}

/* ===================== HERO CTAs ===================== */
.hero-ctas {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hero-ctas .cta {
  color: rgba(212, 207, 196, 0.94);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(212, 165, 116, 0.2);
  background: transparent;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.82;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  font-weight: 600;
}

.hero-ctas .cta:hover {
  color: #d4a574;
  opacity: 1;
  transform: translateY(-2px);
  border-color: #d4a574;
}

.hero-ctas .cta-ghost {
  font-size: 0.85rem;
  opacity: 0.72;
  border-color: rgba(212, 207, 196, 0.1);
  color: rgba(212, 207, 196, 0.82);
}



/* ===================== SECTIONS ===================== */
section {
  padding: 120px 8vw;
  scroll-margin-top: 100px;
}





/* ===================== COLLECTION ===================== */
.collection-section {
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  will-change: background-image;
  height: 600vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1.8s ease-in-out;
}

.collection-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-attachment: fixed;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.collection-item {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8rem;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 2;
  overflow: hidden;
  background: transparent;
  contain: layout;
}

.collection-item.active {
  opacity: 1;
}

.collection-section .collection-text {
  z-index: 3;
  color: #d4cfc4;
  max-width: 40rem;
  position: relative;
}

.collection-section .model-name {
  opacity: 1 !important;
  color: #f5f3f0;
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  margin: 0;
}

.collection-section .model-desc {
  opacity: 1 !important;
  color: #bfb6ab;
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  line-height: 1.6;
}

.image-stack {
  position: relative;
  width: min(32vw, 26rem);
  height: min(32vw, 26rem);
  overflow: hidden;
  z-index: 3;
}

.image-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.image-stack img.active {
  opacity: 1;
}

/* ===================== CRAFTSMANSHIP ===================== */
.craftsmanship-section {
    height: 300vh;  /* Extended for overlay scroll */
    background: #0b0b0b;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}


/* Stage 1: Pinned Background Image */
.craftsmanship-stage.image-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1;
}

.craftsmanship-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* Stage 2: Black Overlay Text (scrolls over image) */
.craftsmanship-stage.text-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    background: rgba(11,11,11,0.82); 
    backdrop-filter: blur(22px); /* Black overlay */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
/* Text stage is pure black */


.craftsmanship-text {
    max-width: 42rem;
    margin-left: 8vw;
    padding-left: 10vw;
    margin-right: auto;
    padding: 0;
    padding-right: 4vw;
    color: #a89f95;
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: left;
    font-weight: 300;
}

.craftsmanship-heading {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #f5f3f0;
    margin-bottom: 3.5rem;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

/* Stage 3: Video */
.craftsmanship-stage.video-stage {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.craftsmanship-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}






/* Video is its own full-bleed frame AFTER text */
.craftsmanship-video-section {
  height: 100vh;
  background: #000;
  margin: 0;
  padding: 0;
}

.craftsmanship-text p {
  color: rgba(230,226,216,0.65); /* instead of near-white */
}


.craftsmanship-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* Rest of CSS stays exactly the same */


/* ===================== FOOTER ===================== */

.footer-links-section {
  background: #0b0b0b;
  padding: 120px 8vw 100px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.45em;
  color: #e6e2d8;
}

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

.footer-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: rgba(230,226,216,0.85);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #d4a574;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  color: #a89f95;
  align-items: center;
}

.demo-notice {
  padding: 4px 12px;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 3px;
  color: #d4a574;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.footer-meta a {
  font-size: 0.75rem;
  color: rgba(212,207,196,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-meta a:hover {
  color: #d4a574;
  color: #e6e2d8;
}


.final-emotion-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Background video */
.final-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px);
  transform: scale(1.06); /* prevents blur edges */
  z-index: 0;
}

/* Dark overlay to soften motion */
.final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content container */
.final-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #e6e2d8;
}

/* Brand */
.final-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* Emotional line */
.final-text {
  font-family: 'Pangaia', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.5;
  max-width: 32rem;
  margin: 0;
}

/* Patent / closing note */
.final-meta {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(230,226,216,0.6);
}

/* ===================== MOBILE (GLOBAL) ===================== */


/* ======================================================
   MOBILE & TABLET — FINAL LUXURY STYLES
====================================================== */



/* ======================================================
   MOBILE — PRIMARY BREAKPOINT
====================================================== */

@media (max-width: 900px) {
  .hero-ctas .cta,
  .hero-ctas .cta-ghost {
    font-size: 0.78rem;
  }

  .brand-intro {
    padding: 80px 8vw 60px;
  }

  .brand-intro .intro-content {
    max-width: calc(100% - 12vw);
    margin-left: 6vw;
    padding-right: 6vw;
  }
}

@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  body {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  /* ---------- NAV ---------- */
  .nav-menu {
    display: none;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar {
    padding: 16px 8vw;
    background: transparent;
    backdrop-filter: none;
  }
  body.menu-open .navbar{
    background: transparent;
    backdrop-filter: none;

  }  
  
  /* ---------- HAMBURGER ---------- */
  .hamburger {
    position: fixed;
    top: 22px;
    right: 6vw;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 4000;
    pointer-events: auto;
  }
  .nav-brand {
    z-index: 1;
    position: relative;
  }

  .hamburger span {
    height: 1px;
    width: 100%;
    background: rgba(230,226,216,0.9);
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  /* Transform to CLOSE (X) */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* ---------- MOBILE NAV ---------- */

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding-top: 22vh;
    padding-left: 10vw;
    gap: 2.5rem;

    /* 🔒 FULLY HIDDEN STATE */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-100%);
    transition:
      transform 0.45s ease,
      opacity 0.35s ease;

    z-index: 2000;
  }

  .mobile-nav a {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    color: #d4cfc4;
    text-decoration: none;
    font-weight: 600;
  }

  /* 🔓 OPEN STATE */
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* ---------- HERO ---------- */
  .hero {
    background-position: center 20%;
    padding-top: 0;
  }

  .hero-text {
    top: 28%;
    max-width: 88%;
    transform: none;
  }


  .hero {
    padding-top: 0;
  
}


  .hero-text .headline {
    font-size: 2.1rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
  }

  .hero-support {
    max-width: 32ch;
  }

  .hero-ctas {
    margin-top: 1.8rem;
  }

  .hero-ctas .cta {
    border: none;
    padding: 0;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    opacity: 0.7;
  }

  /* ---------- BRAND INTRO ---------- */
  .brand-intro .intro-content {
    max-width: 46ch;
    margin-left: 6vw;
  }

  /* ---------- COLLECTION ---------- */
  .collection-section {
    height: 700vh;
  }

  .collection-item {
    flex-direction: column;
    justify-content: center;
    padding: 0 6vw;
  }

  .collection-text {
    margin-bottom: 2rem;
  }

  .image-stack {
    width: 78vw;
    height: 78vw;
    margin-top: 2.5rem;
  }

  /* ---------- CRAFTSMANSHIP ---------- */

  .craftsmanship-image {
    object-position: center 30%;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  

  .craftsmanship-stage.text-stage {
    position: sticky;
    width: 100%;
    top: 0;
    height: 100vh;
    min-height: 120vh;
    background: #000;
    padding: 15vh 6vw 12vh;
    backdrop-filter: none;
    align-items: flex-start;
  }

  .craftsmanship-text {
    max-width: 44ch;
    font-size: 0.95rem;
  }

  .craftsmanship-heading {
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    margin-bottom: 2rem;
  }
  .craftsmanship-video-section{
    margin-top: 0;
  }


  .craftsmanship-section{
    height: 320vh;
  }
  /* ---------- FINAL VIDEO ---------- */
  .final-video {
    filter: blur(4px);
  }

  .final-content {
    padding: 0 6vw;
  }

  .final-text {
    font-size: 1.6rem;
  }

  .final-brand {
    font-size: 0.75rem;
  }

  /* ---------- FOOTER ---------- */
  .footer-links-section {
    padding: 80px 6vw 70px;
  }

  .footer-inner {
    gap: 2.5rem;
  }

  .footer-nav,
  .footer-meta {
    flex-direction: column;
    gap: 1.2rem;
  }

  .footer-brand {
    opacity: 0.6;
  }
}

/* ======================================================
   MOBILE REFINEMENT — LUXURY CLEANUP
   (No values changed, only organized)
====================================================== */

/* ===================== INTRO TYPOGRAPHY ===================== */
.brand-intro .intro-content {
  max-width: 58ch;
  margin-left: 10vw;
  margin-right: auto;
  text-align: left;
  color: #a89f95;
  font-family: 'Lora', serif;
  font-weight: 300;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brand-intro .intro-content p {
  margin: 0 0 1.75rem 0;
}

.brand-intro .intro-content .lead {
  font-size: 1.125rem;
  color: #a9a295;
  font-weight: 400;
}


.hero{
  padding: 0 !important;
}

/* ===================== SKIP TO MAIN LINK ===================== */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: #d4a574;
  color: #0b0b0b;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  font-weight: 700;
}

.skip-to-main:focus {
  top: 0;
}

/* ===================== TRUST SIGNALS SECTION ===================== */
.trust-section {
  padding: 100px 8vw;
  background: #0b0b0b;
  border-top: 1px solid rgba(212, 207, 196, 0.15);
  border-bottom: 1px solid rgba(212, 207, 196, 0.15);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 32px 24px;
  transition: all 0.6s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  color: #d4a574;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.trust-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #f5f3f0;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item p {
  color: #a89f95;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  padding: 80px 8vw;
  background: #0b0b0b;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #f5f3f0;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-section details {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(212, 207, 196, 0.15);
  padding-bottom: 16px;
  cursor: pointer;
}

.faq-section summary {
  font-family: 'Cinzel', serif;
  color: #d4cfc4;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-section summary:hover {
  color: #d4a574;
}

.faq-section details[open] summary {
  color: #d4a574;
}

.faq-section p {
  color: #a89f95;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 12px;
  font-weight: 300;
}

/* ===================== CONTACT FORM SECTION ===================== */
.contact-section {
  padding: 100px 8vw;
  background: #0b0b0b;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #f5f3f0;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-section > p {
  color: #a89f95;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

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

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

.form-group label {
  color: #f5f3f0;
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

.form-group label span {
  color: #d4a574;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #0f0f0f;
  border: 1px solid #3a3a3a;
  color: #d4cfc4;
  padding: 12px 16px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  min-height: 44px;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: inset 0 0 0 1px #d4a574;
  background: #151515;
}

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

.btn-submit {
  background: #d4a574;
  color: #0b0b0b;
  border: none;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: #e8c08a;
  transform: translateY(-2px);
  letter-spacing: 0.2em;
}

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

.form-note {
  color: #6d6861;
  font-size: 0.85rem;
  margin-top: 16px;
  font-weight: 300;
}

/* ===================== PREMIUM SECTION DIVIDERS ===================== */
section {
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8vw;
  right: 8vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 207, 196, 0.15), transparent);
}

/* ===================== PREMIUM LINK STYLING ===================== */
a {
  position: relative;
  text-decoration: none;
  color: #d4cfc4;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4a574;
}

/* ===================== PREMIUM ANIMATIONS ===================== */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* ===================== FOCUS STATES FOR ACCESSIBILITY ===================== */
input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: 2px solid #d4a574;
  outline-offset: 2px;
}

/* Mobile responsive for form */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 6vw;
  }

  .contact-section h2 {
    font-size: 1.4rem;
  }

  .trust-section {
    padding: 60px 6vw;
  }

  .faq-section {
    padding: 60px 6vw;
  }
}

/* ===================== FORM VALIDATION & ERROR STATES ===================== */
.form-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.82rem;
  margin-top: 6px;
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.form-error.show {
  opacity: 1;
}

/* Input error state */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff6b6b !important;
  background-color: rgba(255, 107, 107, 0.03);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1) !important;
}

.form-success {
  background: rgba(76, 175, 80, 0.1);
  color: #4cb764;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-top: 16px;
  border-left: 3px solid #4cb764;
}

.form-error-message {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-top: 16px;
  border-left: 3px solid #ff6b6b;
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form select:invalid:not(:placeholder-shown) {
  border-color: #ff6b6b;
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form select:valid:not(:placeholder-shown) {
  border-color: #4cb764;
}

/* ===================== WISHLIST BUTTON ===================== */
.wishlist-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #d4cfc4;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  opacity: 0.6;
  padding: 0;
}

.wishlist-btn:hover {
  color: #d4a574;
  opacity: 1;
  transform: scale(1.2);
}

.wishlist-btn.active {
  color: #d4a574;
  opacity: 1;
}

/* ===================== NEWSLETTER SECTION ===================== */
.newsletter-section {
  padding: 80px 8vw;
  background: #0b0b0b;
  text-align: center;
  border-top: 1px solid rgba(212, 207, 196, 0.15);
}

.newsletter-section h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  font-family: 'Cinzel', serif;
  color: #f5f3f0;
}

.newsletter-section p {
  color: #a89f95;
  margin-bottom: 30px;
  font-size: 1rem;
}

.newsletter-form {
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
}

#newsletter-email {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(212, 207, 196, 0.2);
  color: #d4cfc4;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#newsletter-email:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1);
}

.btn-newsletter {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid #d4a574;
  color: #d4a574;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: rgba(212, 165, 116, 0.1);
  transform: translateY(-1px);
}

.newsletter-success,
.newsletter-error {
  margin-top: 16px;
  font-size: 0.95rem;
}

.newsletter-success {
  color: #4cb764;
}

.newsletter-error {
  color: #ff6b6b;
}

/* ===================== FAQ SEARCH ===================== */
.faq-search {
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

#faq-search {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(212, 207, 196, 0.2);
  color: #d4cfc4;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#faq-search:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1);
}

.faq-list details {
  display: none;
}

.faq-list details.visible {
  display: block;
}

/* ===================== FOCUS INDICATORS ===================== */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid #d4a574;
  outline-offset: 2px;
}

.btn-submit:focus {
  outline: 2px solid #d4a574;
  outline-offset: 2px;
}

/* ===================== MICRO-INTERACTIONS ===================== */
.btn-submit {
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
}

.trust-item {
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

details summary {
  transition: all 0.3s ease;
}

details summary:hover {
  color: #d4a574;
}

/* ===================== MOBILE RESPONSIVENESS ===================== */
@media (max-width: 768px) {
  .hero-text {
    max-width: 85% !important;
    padding-left: 5vw !important;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .btn-newsletter {
    width: 100%;
  }

  .collection-item {
    padding: 0 4rem !important;
  }

  .collection-text {
    max-width: 100%;
  }

  .wishlist-btn {
    font-size: 1.3rem;
  }
}