/* ═══════════════════════════════════════════════════
   COACH RICH JOURNEY — FUNNEL STORE
   Design System: Jet Black / Crisp White / Rich Chocolate Brown / Gold
   ═══════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --jet: #0B0B0B;
  --jet-soft: #1a1a1a;
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --brown: #4A2E2A;
  --brown-light: #5E3A35;
  --brown-deep: #3A201C;
  --gold: #C69C6D;
  --gold-light: #D4AF7A;
  --gold-dark: #A07A4E;
  --gold-shimmer: linear-gradient(135deg, #C69C6D 0%, #E8C99B 40%, #C69C6D 60%, #A07A4E 100%);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(198,156,109,0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--jet);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── UTILITY ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--jet);
  margin-bottom: 1.2rem;
}

.section-title-light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  font-size: 1.15em;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--jet);
  border: 2px solid var(--jet);
}

.btn-outline:hover {
  background: var(--jet);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 0.9rem;
}

.btn-product {
  width: 100%;
  justify-content: center;
  background: var(--brown);
  color: var(--white);
  padding: 1rem 2rem;
}

.btn-product:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-premium {
  background: var(--jet);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-premium:hover {
  background: var(--gold);
  color: var(--jet);
  box-shadow: var(--shadow-gold);
}

.btn-arrow {
  transition: transform 0.3s var(--ease-out);
  font-size: 1.1em;
}

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


/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
}

#main-nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-monogram {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--jet);
  letter-spacing: 0.05em;
  border: 2px solid var(--jet);
  padding: 0.15rem 0.4rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--jet);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jet);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--brown);
}

.nav-cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.6rem !important;
  font-size: 0.75rem !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--brown-deep) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--jet);
  transition: all 0.3s var(--ease-out);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  padding: 1rem 2rem 2rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jet);
}


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: var(--jet);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('https://assets.cdn.filesafe.space/ZFymoPsICbYJ0IpyfQEO/media/69e257721c1a09bb01822ac4.jpg') center center / cover no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,11,11,0.78) 0%,
    rgba(11,11,11,0.72) 30%,
    rgba(40,25,22,0.7) 60%,
    rgba(11,11,11,0.85) 100%
  );
  pointer-events: none;
}

/* Decorative golden geometric accents */
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(198,156,109,0.2);
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(-20px); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-title .script-accent {
  font-size: 0.65em;
  display: block;
  margin-top: 0.2em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-decorative {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.gold-line {
  height: 100%;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

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


/* ═══════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════ */
#trust-bar {
  background: var(--jet);
  padding: 2rem 2rem;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.trust-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold);
}

.trust-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}


/* ═══════════════════════════════════════════════════
   ABOUT / ELEVATION SECTION
   ═══════════════════════════════════════════════════ */
#about {
  padding: 6rem 2rem;
  background: var(--white);
}

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

.crown-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--jet);
  margin-bottom: 2rem;
}

.about-title .script-accent {
  display: block;
  margin-top: 0.3em;
  font-size: 0.85em;
}

.benefits-label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--jet);
  margin-bottom: 0.75rem;
}

.about-benefits ul li {
  padding: 0.4rem 0;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-card {
  background: var(--jet);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.about-card .card-script {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.about-card p:last-child {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   COACHING PILLARS
   ═══════════════════════════════════════════════════ */
#pillars {
  padding: 5rem 2rem;
  background: var(--cream);
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.pillar-card:hover::after {
  width: 60%;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  color: var(--jet);
}

.pillar-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════
   ABOUT ME
   ═══════════════════════════════════════════════════ */
#about-me {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--white) 0%, #faf5f0 50%, var(--white) 100%);
}

.aboutme-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.aboutme-image {
  position: relative;
}

.aboutme-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(198,156,109,0.15);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.aboutme-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.4;
}

.aboutme-content .section-eyebrow {
  text-align: left;
}

.aboutme-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--jet);
  margin-bottom: 0.5rem;
  position: relative;
}

.aboutme-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 3px;
}

.aboutme-bio p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1rem;
}

.aboutme-bio p strong {
  color: var(--jet);
  font-weight: 700;
}

.aboutme-bio p em {
  color: var(--brown);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════ */
#products {
  padding: 6rem 2rem;
  background: var(--white);
  text-align: center;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Featured card (Masterclass) */
.product-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* Premium cards (high-ticket) */
.product-card.premium {
  background: var(--jet);
  border-color: rgba(198,156,109,0.3);
}

.product-card.premium .product-name,
.product-card.premium .product-desc,
.product-card.premium .product-features li {
  color: rgba(255,255,255,0.85);
}

.product-card.premium .product-tag {
  color: var(--gold);
}

.product-card.premium .product-icon-wrap {
  color: var(--gold);
}

.product-card.premium .product-price {
  color: var(--gold);
}

.product-card.premium .product-features li::before {
  color: var(--gold);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  background: var(--cream);
  color: var(--brown);
  z-index: 2;
}

.badge-gold {
  background: var(--gold) !important;
  color: var(--jet) !important;
}

.badge-premium {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
}

.product-top {
  padding: 2.5rem 1.5rem 1.5rem;
  flex-grow: 1;
}

.product-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--brown);
}

.product-icon {
  width: 100%;
  height: 100%;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--jet);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.product-bottom {
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-card.premium .product-bottom {
  border-top-color: rgba(255,255,255,0.08);
}

.product-price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  color: var(--jet);
}

.price-currency {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.3rem;
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-decimal {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.4rem;
  opacity: 0.5;
}

.product-features {
  margin-bottom: 1.5rem;
}

.product-features li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brown);
  font-weight: 700;
  font-size: 0.75rem;
}


/* ═══════════════════════════════════════════════════
   GUARANTEE
   ═══════════════════════════════════════════════════ */
#guarantee {
  padding: 3rem 2rem;
  background: var(--brown);
}

.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.guarantee-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.guarantee-inner h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.guarantee-inner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
#testimonials {
  padding: 6rem 2rem;
  background: var(--jet);
  text-align: center;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(198,156,109,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* Image-based testimonial grid */
.testimonials-image-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-image-card {
  background: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.testimonial-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.testimonial-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: transparent;
}

.testimonial-image-card:hover img {
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
#final-cta {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(198,156,109,0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(74,46,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--jet);
  margin-bottom: 0.25rem;
}

.cta-script {
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  display: block;
  margin-bottom: 1.5rem;
}

.cta-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.cta-subtitle {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
#main-footer {
  background: var(--jet);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 3px solid var(--brown);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand .logo-monogram {
  font-size: 1.1rem;
  color: var(--white);
  border-color: var(--white);
  padding: 0.1rem 0.3rem;
}

.footer-brand .logo-text {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS — Blur Fade In/Out + Parallax
   ═══════════════════════════════════════════════════ */

/* Base state: hidden with blur */
.scroll-animate {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(50px);
  transition: 
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, filter, transform;
}

/* Visible state: sharp and in place */
.scroll-animate.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Exit state: blur back out when leaving */
.scroll-animate.out-view {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-30px);
}

/* Direction variants */
.scroll-animate[data-direction="left"] {
  transform: translateX(-60px) translateY(0);
}
.scroll-animate[data-direction="left"].in-view {
  transform: translateX(0) translateY(0);
}
.scroll-animate[data-direction="left"].out-view {
  transform: translateX(60px) translateY(0);
}

.scroll-animate[data-direction="right"] {
  transform: translateX(60px) translateY(0);
}
.scroll-animate[data-direction="right"].in-view {
  transform: translateX(0) translateY(0);
}
.scroll-animate[data-direction="right"].out-view {
  transform: translateX(-60px) translateY(0);
}

.scroll-animate[data-direction="scale"] {
  transform: scale(0.85);
}
.scroll-animate[data-direction="scale"].in-view {
  transform: scale(1);
}
.scroll-animate[data-direction="scale"].out-view {
  transform: scale(0.9);
}

/* Stagger delays */
.scroll-delay-1 { transition-delay: 0.05s; }
.scroll-delay-2 { transition-delay: 0.12s; }
.scroll-delay-3 { transition-delay: 0.19s; }
.scroll-delay-4 { transition-delay: 0.26s; }
.scroll-delay-5 { transition-delay: 0.33s; }
.scroll-delay-6 { transition-delay: 0.40s; }

/* Parallax layer styles */
[data-parallax] {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Legacy reveal compat */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero outline button on dark bg */
#hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
#hero .btn-outline:hover {
  background: var(--white);
  color: var(--jet);
}


/* ═══════════════════════════════════════════════════
   PAYMENT MODAL
   ═══════════════════════════════════════════════════ */
.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.payment-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Blurred backdrop */
.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Modal container */
.payment-modal-container {
  position: relative;
  width: 92%;
  max-width: 580px;
  height: 96vh;
  max-height: 96vh;
  background: var(--white);
  border-radius: 16px;
  overflow-y: scroll;
  overflow-x: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(198,156,109,0.2);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Custom scrollbar for payment modal */
.payment-modal-container::-webkit-scrollbar {
  width: 8px;
}

.payment-modal-container::-webkit-scrollbar-track {
  background: #f0ebe4;
  border-radius: 0 16px 16px 0;
}

.payment-modal-container::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
  border: 2px solid #f0ebe4;
}

.payment-modal-container::-webkit-scrollbar-thumb:hover {
  background: var(--brown);
}

.payment-modal.active .payment-modal-container {
  transform: scale(1) translateY(0);
}

/* Close button */
.payment-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--jet);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.payment-modal-close:hover {
  background: var(--brown);
  transform: rotate(90deg) scale(1.1);
}

/* Loading spinner */
.payment-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  z-index: 5;
  transition: opacity 0.4s ease;
}

.payment-modal-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(198,156,109,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.payment-modal-loader p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--brown);
}

/* Iframe */
.payment-iframe {
  width: 100%;
  min-height: 2400px;
  height: auto;
  border: none;
  display: block;
}

/* Body blur when modal is open */
body.modal-open {
  overflow: hidden;
}

body.modal-open > *:not(.payment-modal) {
  filter: blur(8px);
  transition: filter 0.4s ease;
}

/* DCC Price Label (no price tag) */
.dcc-price-label {
  display: flex !important;
  align-items: center;
}

.dcc-apply-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 0.5rem 0;
}

/* Booking Calendar Modal */
.booking-modal-container {
  max-width: 700px;
  height: 92vh;
  max-height: 920px;
  display: flex;
  flex-direction: column;
}

.booking-modal-header {
  padding: 1.8rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.booking-modal-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.booking-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--jet);
}

.booking-modal-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutme-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aboutme-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .aboutme-image img {
    max-width: 350px;
    margin: 0 auto;
  }

  .aboutme-image::after {
    display: none;
  }

  .aboutme-content .section-eyebrow {
    text-align: center;
  }

  .aboutme-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .aboutme-bio p {
    text-align: left;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 2rem auto 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-inner {
    gap: 1.5rem;
  }

  .trust-divider {
    display: none;
  }

  .guarantee-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    flex-direction: column;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
