/* ================================================================
   YOUR BALANCE – SUSANNE WACHTER
   Premium CSS Design System
   ================================================================ */

/* ----------------------------------------------------------------
   1. FONTS & ROOT VARIABLES
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --cream:        #FBF7F0;
  --cream-dark:   #F2EBE0;
  --nude:         #E8DDD0;
  --dark:         #1C1208;
  --dark-mid:     #2E2010;
  --gold:         #C9A84C;
  --gold-light:   #D4AF37;
  --gold-pale:    #E8D08A;
  --gold-ultra:   #F7EDCC;
  --text:         #2A1F0E;
  --text-dark:    #1A1208;
  --text-mid:     #5C4B35;
  --text-light:   #8A7260;
  --white:        #FFFFFF;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', sans-serif;

  /* Spacing */
  --section: 120px;
  --section-sm: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.6s;
  --t-fast: 0.35s;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none; /* Custom cursor active */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; }

/* ----------------------------------------------------------------
   3. CUSTOM CURSOR
   ---------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
}

.cursor-dot.hover { width: 0; height: 0; }
.cursor-ring.hover { width: 60px; height: 60px; border-color: rgba(201, 168, 76, 0.8); }

/* ----------------------------------------------------------------
   4. PAGE LOADER
   ---------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  width: 80px;
  animation: loader-pulse 1.5s ease-in-out infinite;
}
.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loader-line 1.5s var(--ease-out) forwards;
}
@keyframes loader-pulse { 0%,100% { opacity: 0.6; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } }
@keyframes loader-line { to { width: 200px; } }

/* ----------------------------------------------------------------
   5. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast);
}
.nav.scrolled {
  padding: 16px 0;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}
.nav.dark-mode {
  /* for dark hero pages */
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; transition: height var(--t-fast); }
.nav.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--t-fast);
  padding: 4px 0;
  white-space: nowrap;
}
.nav.scrolled .nav-link { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-fast) var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.nav.scrolled .nav-link:hover { color: var(--gold); }

.nav-cta {
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  white-space: nowrap;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), #A8872A);
  color: var(--white);
  transition: all var(--t-fast) var(--ease);
  border: none;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--t-fast);
}
.nav.scrolled .nav-burger span { background: var(--text); }

/* ----------------------------------------------------------------
   6. HERO – FULL SCREEN PHOTO
   ---------------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 12, 4, 0.68) 0%,
    rgba(20, 12, 4, 0.38) 55%,
    rgba(20, 12, 4, 0.05) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to top, var(--cream) 0%, rgba(251,247,240,0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

.hero-signature {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}
.hero-headline .line span {
  display: block;
  transform: translateY(110%);
  animation: lineReveal 1s var(--ease-out) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.5s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.65s; }
.hero-headline .line:nth-child(3) span { animation-delay: 0.8s; }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin-bottom: 48px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}
.hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}
.hero-scroll-text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5));
  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; }
}

/* ----------------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #A8872A);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.4);
}
.btn-gold:hover { box-shadow: 0 12px 40px rgba(201, 168, 76, 0.55); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); }

.btn-sm { padding: 13px 32px; font-size: 10px; }
.btn-lg { padding: 22px 60px; font-size: 12px; }

.btn-arrow::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--t-fast);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ----------------------------------------------------------------
   8. SECTION LAYOUT
   ---------------------------------------------------------------- */
.section { padding: var(--section) 0; }
.section-sm { padding: var(--section-sm) 0; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-xs {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ----------------------------------------------------------------
   9. TYPOGRAPHY
   ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4));
}
.gold-rule::before { background: linear-gradient(90deg, rgba(201,168,76,0.4), transparent); }
.gold-rule-gem { color: var(--gold); font-size: 12px; }

.gold-line {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  border-radius: 2px;
  margin-bottom: 28px;
}
.gold-line-center { margin-left: auto; margin-right: auto; }

.h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
}
.h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}
.h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
}

em, .italic { font-style: italic; color: var(--gold); }

.body-lg { font-size: 18px; line-height: 1.85; color: var(--text-mid); }
.body { font-size: 16px; line-height: 1.85; color: var(--text-mid); }
.body-sm { font-size: 14px; line-height: 1.8; color: var(--text-light); }

.signature {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

/* ----------------------------------------------------------------
   10. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"] { transform: none; }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
[data-delay="8"] { transition-delay: 0.8s; }

/* ----------------------------------------------------------------
   11. MARQUEE TICKER
   ---------------------------------------------------------------- */
.marquee {
  background: linear-gradient(135deg, var(--gold), #A8872A);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
/* Soft cream fade below the marquee for smooth transition */
.marquee::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 0; right: 0;
  height: 32px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.12), transparent);
  pointer-events: none;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeRun 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  white-space: nowrap;
}
.marquee-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }

/* ----------------------------------------------------------------
   12. TWO-COLUMN GRID
   ---------------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-2-lg {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* ----------------------------------------------------------------
   13. IMAGE STYLES
   ---------------------------------------------------------------- */
.img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-height: 560px;
  overflow: hidden;
}
.img-frame img {
  width: 100%;
  transition: transform 0.8s var(--ease);
}
.img-frame:hover img { transform: scale(1.04); }

.img-arch {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
}

.img-overlap-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #A8872A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  z-index: 2;
}
.img-overlap-badge-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.img-overlap-badge-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  text-align: center;
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   14. DARK SECTION (warm dark, not pure black)
   ---------------------------------------------------------------- */
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .eyebrow { color: var(--gold-pale); }
.section-dark .body, .section-dark .body-lg { color: rgba(255,255,255,0.65); }
.section-dark .h2, .section-dark .h3 { color: var(--white); }

/* ----------------------------------------------------------------
   15. QUOTE SECTION
   ---------------------------------------------------------------- */
.quote-block {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--gold-ultra) 100%);
  overflow: hidden;
  text-align: center;
}
.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 8%;
  font-family: var(--serif);
  font-size: 320px;
  color: rgba(201,168,76,0.12);
  pointer-events: none;
  line-height: 1;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.quote-author {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   16. CARDS
   ---------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(42,31,14,0.12); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.card-number {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 0.8;
  margin-bottom: 20px;
}

/* ----------------------------------------------------------------
   17. TESTIMONIAL CARDS
   ---------------------------------------------------------------- */
.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(42,31,14,0.1); }
.testimonial-quote {
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold-ultra);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { color: var(--gold); font-size: 14px; }
.testimonial-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--nude));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* Trustpilot badge style */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-mid);
}
.tp-stars { color: #00b67a; font-size: 14px; letter-spacing: 1px; }
.tp-label { font-weight: 600; color: #00b67a; font-size: 11px; }

/* ----------------------------------------------------------------
   18. LIST STYLES
   ---------------------------------------------------------------- */
.spark-list { display: flex; flex-direction: column; gap: 14px; }
.spark-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}
.spark-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}

.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}
.check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ----------------------------------------------------------------
   19. CONTACT FORM
   ---------------------------------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  transition: all var(--t-fast);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-input::placeholder { color: var(--text-light); font-size: 14px; }
textarea.form-input { resize: vertical; min-height: 140px; }

/* ----------------------------------------------------------------
   20. NEWSLETTER SECTION
   ---------------------------------------------------------------- */
.newsletter-section {
  background: var(--dark);
  padding: 48px 0 32px;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.newsletter-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.newsletter-desc {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.newsletter-form-wrap { }
.newsletter-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
}
.newsletter-input {
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  width: 100%;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: rgba(201,168,76,0.5); }
.newsletter-btn {
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 10px 18px;
}
.newsletter-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  width: 13px;
  height: 13px;
  min-width: 13px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.newsletter-consent span {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
}
.newsletter-consent span a {
  color: var(--gold);
  text-decoration: underline;
}
.newsletter-error {
  font-family: var(--sans);
  font-size: 11px;
  color: #f87c7c;
  margin-top: 8px;
}
.newsletter-success {
  text-align: center;
}
.newsletter-success-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
}
.newsletter-success-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}
.newsletter-success-text {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-fields { grid-template-columns: 1fr; }
  .newsletter-btn { width: 100%; justify-content: center; }
}

/* ----------------------------------------------------------------
   21. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--dark);
  padding: 48px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo img { height: 60px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: all var(--t-fast);
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.4); transition: color var(--t-fast); }
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-copy span { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color var(--t-fast); letter-spacing: 0.5px; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ----------------------------------------------------------------
   21. SCROLL-TO-TOP
   ---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), #A8872A);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  border: none;
  cursor: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-fast) var(--ease);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(201,168,76,0.55); }

/* ----------------------------------------------------------------
   22. GOLD ORNAMENT DIVIDER
   ---------------------------------------------------------------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.ornament-gem { font-size: 14px; color: var(--gold-pale); }

/* ----------------------------------------------------------------
   23. PAGE HERO (inner pages — smaller than homepage)
   ---------------------------------------------------------------- */
.page-hero {
  padding: 180px 0 120px;
  background: linear-gradient(160deg, #3A2810 0%, #2A1C0A 60%, #1C1208 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.13) 0%, transparent 70%);
  pointer-events: none;
}
/* Fade to cream at bottom of page hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero-eyebrow { color: var(--gold-pale); }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .body-lg { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

/* ----------------------------------------------------------------
   24. NEUTRAL CREAM SECTION VARIANT
   ---------------------------------------------------------------- */
.section-nude { background: var(--cream-dark); }
.section-white { background: var(--white); }

/* ----------------------------------------------------------------
   25. PROCESS STEPS
   ---------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold), var(--gold-pale));
}
.process-step { text-align: center; }
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #A8872A);
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  position: relative;
  z-index: 1;
}
.process-step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.process-step-body { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ----------------------------------------------------------------
   26. BLOG CARD
   ---------------------------------------------------------------- */
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(42,31,14,0.1); }
.blog-card-img {
  aspect-ratio: 16/10;
  background: var(--cream-dark);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 28px 28px 32px; }
.blog-card-date {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color var(--t-fast);
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ----------------------------------------------------------------
   27. STICKY FEATURE IMAGE (large image with floating text)
   ---------------------------------------------------------------- */
.sticky-wrap { position: sticky; top: 100px; }

/* ----------------------------------------------------------------
   28. KEYFRAMES
   ---------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ----------------------------------------------------------------
   29. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1200px) {
  .grid-2, .grid-2-lg { gap: 50px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section: 80px; --section-sm: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .hero-content { padding: 0 24px 80px; }
  .grid-2, .grid-2-lg { grid-template-columns: 1fr; gap: 40px; }
  .container, .container-sm, .container-xs { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-scroll { display: none; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(36px, 10vw, 56px); }
  .btn { padding: 16px 32px; font-size: 10px; }
  .process-grid { grid-template-columns: 1fr; }
}
