/* ============================================================
   BASE & VARIABLES
   ============================================================ */
:root {
  --black:   #0d0d0d;
  --cream:   #faf7f2;
  --gold:    #c9a07a;
  --gold-dark: #a07d58;
  --gray:    #6b6b6b;
  --light-gray: #e8e3dc;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --transition: 0.4s ease;
  --section-padding: 120px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream) !important;
  opacity: 1 !important;
  border: 1px solid var(--gold);
  padding: 10px 24px;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.3) 50%,
    rgba(13, 13, 13, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content .label {
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 300;
  font-style: italic;
}

.hero-content p {
  color: rgba(250, 247, 242, 0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--cream);
  transition: background var(--transition), color var(--transition);
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-dark {
  border-color: var(--black);
  color: var(--black);
}

.btn-dark:hover {
  background: var(--black);
  color: var(--cream);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  opacity: 0.5;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--cream);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--black);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.intro-strip p {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  max-width: 500px;
}

.intro-strip .stat-group {
  display: flex;
  gap: 60px;
  flex-shrink: 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-top: 6px;
}

/* ============================================================
   TRUST BADGES STRIP
   ============================================================ */
.trust-badges {
  background: var(--cream);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
  padding: 0 60px;
}

.trust-badge-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 6px;
}

.trust-badge-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-badge-divider {
  width: 1px;
  height: 50px;
  background: var(--light-gray);
  flex-shrink: 0;
}

/* ============================================================
   COLLECTIONS (DARK SECTION)
   ============================================================ */
.collections {
  background: var(--black);
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .label {
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  color: var(--cream);
  font-style: italic;
}

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

.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.collection-card img {
  transition: transform 0.8s ease;
}

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

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 28px;
  transition: background var(--transition);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.15) 55%);
}

.collection-card h3 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 6px;
}

.collection-card .label {
  margin-bottom: 0;
}

/* ============================================================
   CRAFTSMANSHIP / FEATURE (CREAM SECTION)
   ============================================================ */
.feature {
  padding: var(--section-padding);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.feature-text .label {
  display: block;
  margin-bottom: 20px;
}

.feature-text h2 {
  margin-bottom: 24px;
  font-style: italic;
}

.feature-text p {
  margin-bottom: 16px;
}

.feature-text .btn {
  margin-top: 24px;
}

.feature-image {
  position: relative;
  aspect-ratio: 4/5;
}

.feature-image img {
  height: 100%;
}

.feature-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--light-gray);
  z-index: -1;
}

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process {
  background: var(--black);
  padding: 100px 60px;
}

.process .section-header {
  margin-bottom: 60px;
}

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

.process-step {
  padding: 50px 40px;
  border: 1px solid rgba(250, 247, 242, 0.08);
  text-align: center;
  transition: border-color var(--transition);
}

.process-step:hover {
  border-color: var(--gold);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.4;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  color: var(--cream);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.45);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 120px 60px;
  text-align: center;
  background: var(--cream);
}

.cta-band .label {
  display: block;
  margin-bottom: 20px;
}

.cta-band h2 {
  font-style: italic;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  max-width: 440px;
  margin: 0 auto 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(250, 247, 242, 0.45);
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.45);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.25);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 70px;
  overflow: hidden;
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content .label {
  display: block;
  margin-bottom: 16px;
}

.page-hero-content h1 {
  color: var(--cream);
  font-style: italic;
  max-width: 700px;
}

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */
.collection-intro {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.collection-intro h2 {
  font-style: italic;
}

.collection-intro p {
  max-width: 420px;
}

/* Full-width alternating collection showcase */
.collection-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.collection-showcase.reverse {
  direction: rtl;
}

.collection-showcase.reverse > * {
  direction: ltr;
}

.showcase-image {
  position: relative;
  overflow: hidden;
}

.showcase-image img {
  height: 100%;
  min-height: 600px;
  transition: transform 0.9s ease;
}

.collection-showcase:hover .showcase-image img {
  transform: scale(1.04);
}

.showcase-text {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
}

.collection-showcase.light .showcase-text {
  background: var(--cream);
}

.showcase-text .label {
  margin-bottom: 20px;
}

.showcase-text h2 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 20px;
}

.collection-showcase.light .showcase-text h2 {
  color: var(--black);
}

.showcase-text p {
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 16px;
  max-width: 400px;
}

.collection-showcase.light .showcase-text p {
  color: var(--gray);
}

.showcase-text .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.showcase-text .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.showcase-text .feature-list li {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.45);
  display: flex;
  align-items: center;
  gap: 12px;
}

.collection-showcase.light .showcase-text .feature-list li {
  color: var(--gray);
}

.showcase-text .feature-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: var(--section-padding);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-story-text .label {
  display: block;
  margin-bottom: 20px;
}

.about-story-text h2 {
  font-style: italic;
  margin-bottom: 28px;
}

.about-story-text p {
  margin-bottom: 18px;
}

.about-story-image {
  position: relative;
  aspect-ratio: 3/4;
}

.about-story-image img {
  height: 100%;
}

.about-story-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  left: 20px;
  top: 20px;
  border: 1px solid var(--light-gray);
  z-index: -1;
}

.values {
  background: var(--black);
  padding: 100px 60px;
}

.values .section-header {
  margin-bottom: 70px;
}

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

.value-card {
  padding: 60px 50px;
  border: 1px solid rgba(250, 247, 242, 0.07);
  transition: border-color var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
}

.value-card h3 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 14px;
}

.value-card p {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.45);
  line-height: 1.8;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section {
  padding: 100px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 70px;
}

.faq-category-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--black);
  transition: color var(--transition);
}

.faq-item.open .faq-question h3 {
  color: var(--gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.faq-icon {
  position: relative;
}

.faq-icon::before {
  width: 10px;
  height: 1px;
}

.faq-icon::after {
  width: 1px;
  height: 10px;
}

.faq-item.open .faq-icon {
  border-color: var(--gold);
  background: var(--gold);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--cream);
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer-inner {
  padding: 0 0 28px;
}

.faq-answer-inner p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.85;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--section-padding);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info .label {
  display: block;
  margin-bottom: 20px;
}

.contact-info h2 {
  font-style: italic;
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 50px;
  max-width: 380px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--black);
  margin: 0;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--gold-dark);
}

/* Shared form validation */
.field-error {
  font-size: 0.72rem;
  color: #c0392b;
  display: none;
}

.field-group.has-error .field-error {
  display: block;
}

.field-group input.invalid,
.field-group textarea.invalid {
  border-color: #c0392b;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 10px;
}

.contact-form .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form .field-group label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.contact-form .field-group input,
.contact-form .field-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: none;
}

.contact-form .field-group input:focus,
.contact-form .field-group textarea:focus {
  border-color: var(--gold);
}

.contact-form .field-group textarea {
  min-height: 100px;
}

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

.contact-submit {
  background: var(--black);
  color: var(--cream);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.contact-submit:hover {
  background: var(--gold-dark);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-submit .btn-text { transition: opacity 0.2s; }
.contact-submit.loading .btn-text { opacity: 0; }

.contact-submit .btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(250,247,242,0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.contact-submit.loading .btn-spinner { display: block; }

.contact-success-msg {
  display: none;
  font-size: 0.875rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  padding: 14px 0;
  border-top: 1px solid var(--light-gray);
}

.contact-success-msg.visible { display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--black);
  padding: var(--section-padding);
  padding-left: 60px;
  padding-right: 60px;
}

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

.testimonial-card {
  padding: 50px 44px;
  border: 1px solid rgba(250, 247, 242, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 160, 122, 0.3);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.7;
  font-weight: 300;
}

.testimonial-author {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 24px;
}

.testimonial-name {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 6px;
}

.testimonial-detail {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.15);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), border-color var(--transition);
  z-index: 500;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; }

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

  .feature {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 30px;
  }

  .feature-image { order: -1; }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  /* Collections page */
  .collection-showcase,
  .collection-showcase.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .showcase-image img { min-height: 400px; }
  .showcase-text { padding: 60px 40px; }

  .collection-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 70px 30px;
  }

  /* About */
  .about-story {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 30px;
  }

  .about-story-image { order: -1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .trust-badges { gap: 0; flex-wrap: wrap; }

  /* Contact */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 30px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 22px 24px;
  }

  .nav.scrolled {
    padding: 16px 24px;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 0 24px 60px;
  }

  .hero-scroll {
    display: none;
  }

  .intro-strip {
    flex-direction: column;
    padding: 50px 24px;
    text-align: center;
  }

  .intro-strip .stat-group {
    gap: 30px;
  }

  .trust-badges {
    padding: 40px 24px;
    gap: 32px;
  }

  .trust-badge {
    padding: 0;
  }

  .trust-badge-divider {
    display: none;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .process {
    padding: 80px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 80px 24px;
  }

  footer {
    padding: 60px 24px 30px;
  }

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

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

  /* Inner page hero */
  .page-hero {
    padding: 0 24px 50px;
    height: 45vh;
  }

  /* Collections */
  .showcase-text { padding: 50px 24px; }
  .values { padding: 80px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 40px 30px; }

  /* About */
  .about-story { padding: 70px 24px; }

  /* FAQ */
  .faq-section { padding: 70px 24px; }

  /* Contact */
  .contact-section { padding: 70px 24px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 28px; }

  /* Testimonials */
  .testimonials { padding: 80px 24px; }

  /* Scroll to top */
  .scroll-top { bottom: 24px; right: 24px; }

  /* WhatsApp */
  .wa-btn { bottom: 24px; left: 24px; width: 50px; height: 50px; }
  .wa-btn svg { width: 22px; height: 22px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 120px 60px;
  text-align: center;
}

.not-found-inner .label {
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.not-found-inner h1 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 20px;
}

.not-found-inner p {
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.not-found-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.not-found-links .btn-dark {
  border-color: rgba(250, 247, 242, 0.3);
  color: var(--cream);
}

.not-found-links .btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

@media (max-width: 768px) {
  .not-found { padding: 100px 24px; }
  .not-found-links { flex-direction: column; align-items: center; }
}

/* ============================================================
   COLLECTIONS — FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 60px 60px;
  background: var(--black);
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(250, 247, 242, 0.2);
  color: rgba(250, 247, 242, 0.55);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

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

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

@media (max-width: 768px) {
  .filter-bar {
    padding: 0 24px 60px;
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.62rem;
  }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 500;
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
}

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

.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
