/* ═══════════════════════════════════════════
   FERST HOMMES — style.css
   Dark luxury palette: #0D0C0B / #1A1815 / #C9A84C (gold)
   ═══════════════════════════════════════════ */

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

:root {
  --black:    #0D0C0B;
  --dark:     #1A1815;
  --dark2:    #231F1B;
  --dark3:    #2E2924;
  --gold:     #C9A84C;
  --gold-lt:  #E2C87A;
  --gold-dk:  #9A7A2E;
  --cream:    #F5F0E8;
  --cream2:   #EDE8DE;
  --ivory:    #FFFFF0;
  --text:     #C8C0B4;
  --text-lt:  #E8E3DC;
  --white:    #FFFFFF;
  --border:   rgba(201,168,76,0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:   4px;
  --nav-h:    100px;
  --trans:    cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.35s var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--black);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.82rem; }

/* ── Section typography ── */
.section-eyebrow {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--gold); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--cream); line-height: 1.2;
  margin-bottom: 3rem;
}
.section-title.light { color: var(--white); }

/* ══════════════════════════════
   NAVBAR
   ══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s var(--trans), backdrop-filter 0.4s var(--trans), box-shadow 0.4s var(--trans);
}
.navbar.scrolled {
  background: rgba(13,12,11,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.9rem; }
.logo-text { display: flex; flex-direction: column; }
/* Logo mark styles are defined in the PROFESSIONAL LOGO MARK section below */
.logo-text { display: flex; flex-direction: column; }
.logo-img { height: 70px; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; transform: translateZ(0); backface-visibility: hidden; }
.footer-logo .logo-img { height: 130px; }
.logo-img-loader { height: 260px; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; transform: translateZ(0); backface-visibility: hidden; }
.logo-img-large { height: 160px; width: auto; object-fit: contain; margin-bottom: 1rem; image-rendering: -webkit-optimize-contrast; transform: translateZ(0); backface-visibility: hidden; }
.brand-name { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; color: var(--cream); }
.brand-tagline { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--gold); opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; margin-left: auto; }
.nav-link {
  padding: 0.5rem 0.7rem;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s var(--trans);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 1.5rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--cream);
  transition: all 0.3s var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 950;
  background: var(--dark); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  transform: translateX(100%); transition: transform 0.45s var(--trans);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--cream); font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav nav {
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.mobile-nav-link {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300;
  color: var(--cream); letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  padding-bottom: 8vh;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroZoom 8s ease forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,12,11,0.85) 40%, rgba(13,12,11,0.2) 100%),
              linear-gradient(to top, rgba(13,12,11,0.5) 20%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 0 2rem 0 calc(max(2rem,(100vw - 1400px)/2));
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-desc { color: var(--text); max-width: 480px; margin-bottom: 2.5rem; font-size: 0.95rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; right: 2.5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gold); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px; background: var(--gold); opacity: 0.5;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.2} 50%{opacity:0.8} }

/* animate-fade-up */
.animate-fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--trans), transform 0.8s var(--trans); }
.animate-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   TRUST BAR
   ══════════════════════════════ */
.trust-bar { background: var(--cream); padding: 3.5rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--cream2);
  transition: background 0.3s var(--trans);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--cream2); }
.trust-icon {
  width: 48px; height: 48px; border: 1px solid var(--gold-dk);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); margin-bottom: 1rem;
}
.trust-item h3 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #1A1815; margin-bottom: 0.4rem; }
.trust-item p  { font-size: 0.82rem; color: #6B6157; }

/* ══════════════════════════════
   COLLECTIONS
   ══════════════════════════════ */
.collections { padding: 7rem 0 0; background: var(--white); }
.collections .section-title { color: var(--black); }
.collections .section-eyebrow { color: var(--gold-dk); }
.collections .container { margin-bottom: 3rem; }
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.collection-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4;
}
.card-img-wrap { position: absolute; inset: 0; }
.card-img-wrap img { transition: transform 0.7s var(--trans); }
.collection-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,0.9) 30%, rgba(13,12,11,0.1) 70%);
  transition: opacity 0.4s;
}
.card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 2rem 1.5rem;
}
.card-num { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.5rem; }
.card-content h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 0.4rem; }
.card-content p  { font-size: 0.8rem; color: var(--text); margin-bottom: 1rem; }
.card-link {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s;
}
.card-link:hover { gap: 0.8rem; }

/* ══════════════════════════════
   ABOUT SPLIT
   ══════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 640px; margin-top: 7rem;
}
.about-image-side { position: relative; overflow: hidden; }
.about-image-side img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 2.5rem; right: -1rem;
  background: var(--gold); color: var(--black);
  padding: 1.2rem 1.8rem; text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.badge-num { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600; line-height: 1; }
.badge-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.about-content-side {
  background: var(--ivory); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content-side .section-eyebrow { color: var(--gold-dk); }
.about-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--black); line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-body { font-size: 0.9rem; color: var(--dark3); margin-bottom: 2rem; max-width: 460px; }
.about-list { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.about-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; color: var(--text-lt); }
.about-list svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ══════════════════════════════
   PROCESS
   ══════════════════════════════ */
.process { background: var(--white); padding: 7rem 0; text-align: center; }
.process .section-title.light { color: var(--black); }
.process .section-eyebrow.light { color: var(--gold-dk); }
.process-track { position: relative; margin-top: 1rem; }
.process-line {
  position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: var(--cream2);
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-step { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 0 1rem; }
.step-circle {
  width: 56px; height: 56px; border: 1px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--ivory); color: var(--gold-dk); position: relative;
  transition: background 0.3s, color 0.3s;
}
.step-circle:hover { background: var(--gold); color: var(--white); }
.step-num {
  position: absolute; top: -10px; right: -10px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
  background: var(--gold); color: var(--black); width: 20px; height: 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); }
.process-step p  { font-size: 0.8rem; color: var(--dark3); text-align: center; }

/* ══════════════════════════════
   TESTIMONIALS
   ══════════════════════════════ */
.testimonials { background: var(--ivory); }
.testimonials-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.testimonial-text-side {
  padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center;
}
.testimonials .section-eyebrow { color: var(--gold-dk); }
.testimonial-quote {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; font-style: italic; color: var(--black);
  line-height: 1.5; margin-bottom: 1.5rem; border: none;
  quotes: none;
}
.testimonial-author { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold-dk); margin-bottom: 2.5rem; }
.rating-box { border-top: 1px solid var(--cream2); padding-top: 2rem; }
.stars { font-size: 1.3rem; color: var(--gold-dk); letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.rating-score { display: block; font-family: var(--font-serif); font-size: 1.8rem; color: var(--black); }
.rating-count  { display: block; font-size: 0.75rem; color: var(--dark3); margin-bottom: 1.2rem; }
.review-platforms { display: flex; flex-direction: column; gap: 0.6rem; }
.platform { display: flex; align-items: center; justify-content: space-between; max-width: 220px; }
.platform-name  { font-size: 0.8rem; font-weight: 500; color: var(--dark3); }
.platform-stars { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.05em; }
.testimonial-image-side { position: relative; overflow: hidden; }
.testimonial-image-side img { height: 100%; object-fit: cover; }
.testimonial-img-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(13,12,11,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); padding: 0.6rem 1.2rem;
  font-size: 0.7rem; letter-spacing: 0.1em; color: var(--cream); text-transform: uppercase;
}

/* ══════════════════════════════
   CTA BANNER
   ══════════════════════════════ */
.cta-banner {
  position: relative; background: var(--dark);
  padding: 7rem 0; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-content { display: flex; flex-direction: column; align-items: center; }
.cta-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; color: var(--white); margin-bottom: 1rem;
}
.cta-body { color: var(--text); max-width: 480px; margin-bottom: 2.5rem; }

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer { background: var(--dark2); padding: 5rem 0 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem 4rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-logo { margin-bottom: 1.2rem; }
.footer-blurb { font-size: 0.82rem; color: var(--text); margin-bottom: 1.5rem; max-width: 260px; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.82rem; color: var(--text); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 0.7rem; font-size: 0.82rem; color: var(--text); align-items: flex-start; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--text);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--trans), transform 0.7s var(--trans); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--cream2); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-image-side { height: 480px; }
  .about-content-side { padding: 4rem 2rem; }
  .about-img-badge { right: 1rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-line { display: none; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .testimonial-image-side { height: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-content { padding: 0 1.5rem; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card { aspect-ratio: 2/3; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonial-text-side { padding: 3.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   LOADING SCREEN
   ══════════════════════════════ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; transform: translateY(-8px); }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.loader-logo {
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{opacity:0.7;transform:scale(0.97)} 50%{opacity:1;transform:scale(1)} }
.loader-brand {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.28em;
  color: var(--black); margin-top: 0.5rem;
}
.loader-slogan {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: var(--gold-dk); opacity: 0.8; letter-spacing: 0.04em;
}
.loader-bar {
  width: 160px; height: 1px; background: rgba(201,168,76,0.2);
  margin-top: 0.5rem; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%; background: var(--gold);
  animation: loadBar 1.6s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ══════════════════════════════
   CUSTOM CURSOR
   ══════════════════════════════ */
.custom-cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}
.cursor-trail {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.3s, height 0.3s;
}
body.cursor-hover .custom-cursor { width: 6px; height: 6px; background: var(--gold-lt); }
body.cursor-hover .cursor-trail { width: 48px; height: 48px; border-color: rgba(201,168,76,0.6); }
@media (hover: none) { .custom-cursor, .cursor-trail { display: none; } }

/* ══════════════════════════════
   PROFESSIONAL LOGO MARK
   ══════════════════════════════ */
.logo-mark {
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  transition: background 0.3s var(--trans);
}
.logo-mark::before {
  content: ''; position: absolute; inset: 4px;
  border: 0.5px solid rgba(201,168,76,0.35);
  pointer-events: none;
}
.logo-mark.large { width: 62px; height: 62px; }
.logo-mark.large::before { inset: 5px; }
.lm-inner {
  display: flex; align-items: center; gap: 1px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.85rem; color: var(--gold); letter-spacing: 0.02em;
  font-weight: 400;
}
.logo-mark.large .lm-inner { font-size: 1.2rem; gap: 2px; }
.lm-dot { font-size: 0.5rem; color: var(--gold); opacity: 0.6; margin-bottom: 1px; }
.logo-mark.large .lm-dot { font-size: 0.7rem; }
.logo-mark:hover { background: var(--gold); }
.logo-mark:hover .lm-inner { color: var(--black); }
.logo-mark:hover .lm-dot  { color: var(--black); }

/* ══════════════════════════════
   HERO SLOGAN
   ══════════════════════════════ */
.hero-slogan {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--gold); letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════
   TESTIMONIALS GRID (white bg)
   ══════════════════════════════ */
.tg-section { background: var(--cream); padding: 7rem 0; }
.tg-title { color: #1A1815; margin-bottom: 3rem; }
.section-eyebrow.dark-ey { color: var(--gold-dk); }
.tg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tg-card {
  background: var(--white); border: 1px solid var(--cream2);
  padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem;
  transition: box-shadow 0.35s var(--trans), transform 0.35s var(--trans);
}
.tg-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.tg-stars { color: var(--gold-dk); font-size: 0.9rem; letter-spacing: 0.1em; }
.tg-quote {
  font-family: var(--font-serif); font-size: 1.02rem; font-style: italic;
  color: #2A2420; line-height: 1.7; flex: 1;
}
.tg-author {
  display: flex; align-items: center; gap: 0.9rem;
  padding-top: 1rem; border-top: 1px solid var(--cream2);
}
.tg-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--dark); border: 1px solid var(--gold-dk);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; color: var(--gold);
}
.tg-author strong { display: block; font-size: 0.8rem; font-weight: 500; color: #1A1815; }
.tg-author span   { display: block; font-size: 0.72rem; color: #8A7D72; margin-top: 0.1rem; }

/* ══════════════════════════════
   STATS BAND (white bg)
   ══════════════════════════════ */
.stats-band { background: var(--white); padding: 4.5rem 0; border-top: 1px solid var(--cream2); border-bottom: 1px solid var(--cream2); }
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; flex: 1; text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--dark); font-weight: 300; line-height: 1;
}
.stat-suffix { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold-dk); vertical-align: super; margin-left: 1px; }
.stat-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #8A7D72; }
.stat-div { width: 1px; height: 60px; background: var(--cream2); flex-shrink: 0; margin: 0 2rem; }

/* ══════════════════════════════
   CTA / FOOTER SLOGAN
   ══════════════════════════════ */
.cta-slogan {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.1rem; color: rgba(201,168,76,0.7);
  letter-spacing: 0.04em; margin-bottom: 0.8rem;
}
.footer-slogan {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.9rem; color: rgba(201,168,76,0.6);
  letter-spacing: 0.02em; margin-bottom: 0.5rem;
}

/* ══════════════════════════════
   MICRO-ANIMATIONS
   ══════════════════════════════ */

/* Button shimmer */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute;
  top: -50%; left: -80%; width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-gold:hover::after { left: 130%; }

/* Floating label on nav */
.nav-link.active { color: var(--gold); }

/* Card reveal stagger */
.tg-card:nth-child(1) { transition-delay: 0s; }
.tg-card:nth-child(2) { transition-delay: 0.07s; }
.tg-card:nth-child(3) { transition-delay: 0.14s; }
.tg-card:nth-child(4) { transition-delay: 0.21s; }
.tg-card:nth-child(5) { transition-delay: 0.28s; }
.tg-card:nth-child(6) { transition-delay: 0.35s; }

/* Collection card 3D tilt (JS adds these inline transforms) */
.collection-card { transform-style: preserve-3d; }
.collection-card .card-img-wrap img { will-change: transform; }

/* Parallax hero */
.hero-img { will-change: transform; }

/* Process step stagger */
.process-step:nth-child(1) .step-circle { transition-delay: 0s; }
.process-step:nth-child(2) .step-circle { transition-delay: 0.1s; }
.process-step:nth-child(3) .step-circle { transition-delay: 0.2s; }
.process-step:nth-child(4) .step-circle { transition-delay: 0.3s; }

/* Trust item stagger */
.trust-item:nth-child(1) { animation-delay: 0s; }
.trust-item:nth-child(2) { animation-delay: 0.1s; }
.trust-item:nth-child(3) { animation-delay: 0.2s; }
.trust-item:nth-child(4) { animation-delay: 0.3s; }

/* Magnetic button glow on hover */
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.35), 0 0 0 1px rgba(201,168,76,0.2); }

/* Section divider ornament */
.tg-section::before, .stats-band::before {
  content: ''; display: block; width: 40px; height: 2px;
  background: var(--gold); margin: 0 auto 1rem;
  opacity: 0;
}

/* Responsive grid */
@media (max-width: 900px) { .tg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) {
  .tg-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-wrap: wrap; gap: 2rem; }
  .stat-div { display: none; }
}
