﻿:root {
  --rose: #F0C4D0;
  --rose-deep: #6B2E4A;
  --rose-light: #F5D4DE;
  --blush: #F0C4D0;
  --blush-soft: #F5D4DE;
  --champagne: #FAE4EA;
  --ivory: #FDF0F3;
  --ivory-warm: #FFF8F5;
  --gold: #C5994B;
  --gold-bright: #D4A94F;
  --gold-light: #DFC07A;
  --gold-pale: #EDD9A8;
  --wine: #6B2E4A;
  --wine-deep: #4E1D35;
  --charcoal: #3A2030;
  --text-dark: #4A2838;
  --text-body: #5A3548;
  --text-muted: #7A5568;
  --white: #FFFFFF;
  --cream: #FDF5E6;
  --plum: #6B2E4A;
  --plum-deep: #4E1D35;
  --plum-light: #8B4968;
  --mauve: #9E6B85;
  --mauve-soft: #B08A9E;
  --pink: #F0C4D0;
  --pink-soft: #F5D4DE;
  --pink-pale: #FAE4EA;
  --pink-whisper: #FDF0F3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--ivory-warm);
  overflow-x: hidden;
}

/* ================================ */
/* NAVIGATION */
/* ================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0 5%;
}

.nav.scrolled {
  background: rgba(78,29,53,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(78,29,53,0.2);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: 0.1em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 24px;
  border-radius: 2px;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 20px; position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--blush);
  position: absolute; left: 0;
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* ================================ */
/* HERO */
/* ================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 40%, var(--plum-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184,134,11,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(196,122,122,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(184,134,11,0.04) 0%, transparent 40%);
  animation: heroFloat 18s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(1%,-0.5%) scale(1.02); }
}

.hero-content {
  text-align: center;
  position: relative; z-index: 1;
  padding: 2rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-weight: 200; font-size: 12px;
  letter-spacing: 0.6em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeUp 1s ease-out 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 9vw, 88px);
  color: var(--ivory);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  animation: fadeUp 1s ease-out 0.4s both;
}
.hero-name span { color: var(--gold); }

.hero-title-line {
  font-weight: 200; font-size: 13px;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--blush);
  margin-top: 12px;
  animation: fadeUp 1s ease-out 0.5s both;
}

.hero-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
  animation: fadeUp 1s ease-out 0.6s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(17px, 2.8vw, 26px);
  color: var(--blush-soft);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  animation: fadeUp 1s ease-out 0.7s both;
}
.hero-statement {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(20px, 3.5vw, 32px);
  color: var(--gold);
  letter-spacing: 0.04em;
  animation: fadeUp 1s ease-out 0.8s both;
}

.hero-cta-group {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 36px;
  animation: fadeUp 1s ease-out 1s both;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--charcoal);
  border: none;
  padding: 16px 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--blush);
  padding: 15px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold); color: var(--gold);
}

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite; z-index: 2;
}
.scroll-hint span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 auto;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================ */
/* SECTIONS SHARED */
/* ================================ */
.section { padding: 100px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  font-weight: 400; font-size: 11px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--wine-deep);
  letter-spacing: 0.08em;
}
.section-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic; font-size: 16px;
  color: var(--text-muted);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ================================ */
/* CREDENTIALS BAR */
/* ================================ */
.cred-bar {
  background: linear-gradient(90deg, var(--plum-deep), var(--plum), var(--plum-deep));
  padding: 28px 5%;
  overflow: hidden;
  position: relative;
}
.cred-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.cred-item {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: 14px;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cred-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================ */
/* STORY SECTION */
/* ================================ */
.story-section { background: var(--ivory-warm); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.story-text p {
  font-weight: 300; font-size: 15px;
  color: var(--text-body); line-height: 1.9;
  margin-bottom: 20px;
}
.story-text em {
  color: var(--wine-deep);
  font-style: normal; font-weight: 500;
}

.story-quote {
  background: linear-gradient(145deg, var(--blush-soft), var(--ivory));
  border-left: 3px solid var(--gold);
  padding: 32px; border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.story-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: 20px; color: var(--wine-deep);
  line-height: 1.7;
}
.story-quote .attr {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold);
  margin-top: 12px; text-transform: uppercase;
}

.story-milestones {
  background: var(--white);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: 8px; padding: 32px;
  box-shadow: 0 4px 20px rgba(78,29,53,0.04);
}
.milestone {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--blush-soft);
}
.milestone:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.milestone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-top: 6px; flex-shrink: 0;
}
.milestone h4 {
  font-weight: 500; font-size: 13px;
  color: var(--wine-deep); margin-bottom: 2px;
}
.milestone p {
  font-weight: 300; font-size: 12px;
  color: var(--text-muted); line-height: 1.5;
}

/* ================================ */
/* JOURNEY SECTION (dark) */
/* ================================ */
.journey-section {
  background: linear-gradient(160deg, var(--plum-deep), var(--plum));
  position: relative; overflow: hidden;
}
.journey-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,134,11,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(196,122,122,0.04) 0%, transparent 50%);
}
.journey-section .section-title { color: var(--ivory); }
.journey-section .section-subtitle { color: var(--blush); }

.journey-timeline {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.journey-item {
  display: flex; gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.journey-year {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 18px;
  color: var(--gold); min-width: 60px;
  text-align: right;
  padding-top: 2px;
}
.journey-line-col {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0;
}
.journey-circle {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, var(--plum-deep), var(--charcoal));
  flex-shrink: 0;
}
.journey-vline {
  width: 1px; flex: 1;
  background: rgba(184,134,11,0.25);
  min-height: 30px;
}
.journey-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 6px; padding: 20px;
  flex: 1;
  transition: all 0.3s ease;
}
.journey-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.journey-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 18px;
  color: var(--ivory); margin-bottom: 6px;
}
.journey-card p {
  font-weight: 300; font-size: 13px;
  color: var(--blush); line-height: 1.6;
}

/* ================================ */
/* SERVICES SECTION */
/* ================================ */
.services-section { background: var(--ivory-warm); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(78,29,53,0.04);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(78,29,53,0.1);
  border-color: var(--gold);
}
.service-icon {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 36px;
  color: var(--gold); margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 22px;
  color: var(--wine-deep); margin-bottom: 8px;
}
.service-card .service-for {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.service-card p {
  font-weight: 300; font-size: 13px;
  color: var(--text-muted); line-height: 1.7;
}

/* ================================ */
/* PRODUCTS SECTION */
/* ================================ */
.products-section {
  background: linear-gradient(180deg, var(--blush-soft), var(--ivory-warm), var(--ivory));
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(78,29,53,0.04);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(78,29,53,0.1);
}
.product-header {
  padding: 40px 32px 24px;
}
.product-badge {
  display: inline-block;
  font-weight: 500; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.product-badge.live {
  background: var(--rose); color: var(--ivory);
}
.product-badge.building {
  background: var(--gold); color: var(--charcoal);
}
.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 28px;
  color: var(--wine-deep); margin-bottom: 8px;
}
.product-card .product-line {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: 16px; color: var(--text-muted);
  margin-bottom: 16px;
}
.product-body {
  padding: 0 32px 32px;
}
.product-body p {
  font-weight: 300; font-size: 13px;
  color: var(--text-body); line-height: 1.7;
  margin-bottom: 16px;
}
.product-stat {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.product-stat .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.product-stat span {
  font-weight: 400; font-size: 12px;
  color: var(--wine-deep);
}

/* ================================ */
/* SPEAKING SECTION (dark) */
/* ================================ */
.speaking-section {
  background: linear-gradient(160deg, var(--plum-deep), var(--plum));
  position: relative; overflow: hidden;
}
.speaking-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(184,134,11,0.06) 0%, transparent 60%);
}
.speaking-section .section-title { color: var(--ivory); }
.speaking-section .section-subtitle { color: var(--blush); }

.speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative; z-index: 1;
}
.speaking-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 28px;
  color: var(--ivory); margin-bottom: 16px;
}
.speaking-text p {
  font-weight: 300; font-size: 14px;
  color: var(--blush); line-height: 1.8;
  margin-bottom: 16px;
}
.speaking-topics { list-style: none; }
.speaking-topics li {
  font-weight: 300; font-size: 13px;
  color: var(--blush-soft);
  padding: 10px 0;
  border-bottom: 1px solid rgba(184,134,11,0.12);
}
.speaking-topics li::before {
  content: 'âœ¦ '; color: var(--gold);
}

.speaking-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}
.speak-stat {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(184,134,11,0.15);
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.speak-stat:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.speak-stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 36px;
  color: var(--gold); line-height: 1;
}
.speak-stat .label {
  font-weight: 300; font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blush); margin-top: 8px;
  text-transform: uppercase;
}

/* ================================ */
/* HUMAN SECTION */
/* ================================ */
.human-section { background: var(--ivory-warm); }

.human-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.human-quote {
  background: linear-gradient(145deg, var(--blush-soft), var(--ivory));
  border-left: 3px solid var(--rose);
  padding: 40px; border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.human-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: 22px; color: var(--wine-deep);
  line-height: 1.6;
}
.human-facts {
  list-style: none;
}
.human-facts li {
  font-weight: 300; font-size: 14px;
  color: var(--text-body); line-height: 1.8;
  padding: 8px 0;
  border-bottom: 1px solid var(--blush-soft);
}
.human-facts li::before {
  content: 'â™¡ '; color: var(--rose);
}
.human-facts li:last-child { border-bottom: none; }

.human-closing {
  margin-top: 24px;
}
.human-closing p {
  font-weight: 300; font-size: 15px;
  color: var(--text-body); line-height: 1.8;
  margin-bottom: 16px;
}
.human-closing em {
  color: var(--wine-deep); font-style: normal; font-weight: 500;
}

/* ================================ */
/* BLOG SECTION */
/* ================================ */
.blog-section {
  background: linear-gradient(180deg, var(--ivory), var(--blush-soft), var(--ivory-warm));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(184,134,11,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(78,29,53,0.04);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(78,29,53,0.08);
}
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--charcoal), var(--wine-deep));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-img .cat {
  position: absolute; top: 12px; left: 12px;
  font-weight: 500; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  padding: 4px 12px; border-radius: 2px;
}
.blog-img .icon-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 40px;
  color: rgba(184,134,11,0.3);
}
.blog-body {
  padding: 24px;
}
.blog-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 20px;
  color: var(--wine-deep); margin-bottom: 8px;
  line-height: 1.3;
}
.blog-body p {
  font-weight: 300; font-size: 13px;
  color: var(--text-muted); line-height: 1.6;
  margin-bottom: 12px;
}
.blog-body .read-more {
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: color 0.3s ease;
}
.blog-body .read-more:hover { color: var(--rose); }

/* ================================ */
/* CONTACT / CTA SECTION */
/* ================================ */
.contact-section {
  background: linear-gradient(160deg, var(--plum-deep), var(--plum));
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,134,11,0.06) 0%, transparent 60%);
}

.contact-inner {
  text-align: center;
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.contact-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ivory); margin-bottom: 12px;
}
.contact-inner .sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: 18px; color: var(--blush);
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.contact-card {
  padding: 28px 16px;
  border: 1px solid rgba(184,134,11,0.15);
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.contact-card .c-label {
  font-weight: 500; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px;
}
.contact-card .c-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 16px;
  color: var(--ivory);
}
.contact-card a {
  color: var(--ivory); text-decoration: none;
}
.contact-card a:hover { color: var(--gold); }

.contact-cta {
  margin-top: 20px;
}

/* ================================ */
/* FOOTER */
/* ================================ */
.site-footer {
  background: linear-gradient(160deg, var(--plum-deep), var(--charcoal));
  padding: 60px 5% 30px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-deep), var(--gold), var(--pink), var(--gold), var(--plum-deep));
}
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 24px;
  color: var(--ivory); letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-brand .f-logo span { color: var(--gold); }
.footer-brand p {
  font-weight: 300; font-size: 12px;
  color: var(--text-muted); line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-weight: 300; font-size: 12px;
  color: var(--blush); text-decoration: none;
  margin-bottom: 8px; transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(184,134,11,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-weight: 200; font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.1em;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-weight: 300; font-size: 11px;
  color: var(--blush); text-decoration: none;
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--gold); }

/* ================================ */
/* RESPONSIVE */
/* ================================ */
@media (max-width: 900px) {
  .story-grid, .speaking-grid, .human-grid, .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 5%;
    right: 5%;
    padding: 22px;
    background: rgba(78,29,53,0.98);
    border: 1px solid rgba(197,153,75,0.22);
    box-shadow: 0 18px 40px rgba(78,29,53,0.25);
  }
  .nav-links.open { display: grid; gap: 18px; }
  .nav-toggle { display: block; }
  .cred-track { gap: 20px; }
  .cred-item { font-size: 12px; }
  .speaking-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .speaking-stats { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

/* ================================ */
/* WORDPRESS CONTENT */
/* ================================ */
.admin-bar .nav { top: 32px; }
body:not(.home) .nav {
  background: rgba(78,29,53,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(78,29,53,0.2);
}
.page-hero {
  padding-top: 140px;
  padding-bottom: 40px;
  background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 70%, var(--plum-light) 100%);
}
.single-post-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.page-hero .section-title,
.page-hero .section-subtitle { color: var(--ivory); }
.page-content-main {
  background: var(--ivory-warm);
  padding-top: 80px;
}
.page-entry-content > .alignfull:first-child,
.page-entry-content > .wp-block-cover:first-child,
.page-entry-content > .elementor:first-child {
  margin-top: -80px;
}
.page-entry-content > *:not(.alignfull):not(.elementor) {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}
.page-entry-content > .alignwide {
  max-width: 1200px;
}
.page-entry-content > .alignfull,
.page-entry-content > .elementor {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.page-entry-content > .kb-row-layout-wrap,
.page-entry-content > .wp-block-kadence-rowlayout,
.page-entry-content > .kt-row-layout-wrap {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.page-entry-content .kt-row-column-wrap,
.page-entry-content .wp-block-kadence-column,
.page-entry-content .wp-block-kadence-advancedheading,
.page-entry-content .wp-block-kadence-advancedbtn,
.page-entry-content .wp-block-kadence-image {
  box-sizing: border-box;
}
.page-entry-content .alignfull,
.entry-content .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.page-entry-content .alignwide,
.entry-content .alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.page-entry-content .kt-blocks-carousel,
.page-entry-content .kt-tabs-wrap,
.page-entry-content .kt-accordion-wrap {
  max-width: 100%;
}
.page-entry-content > footer,
.page-entry-content .site-footer,
.page-entry-content [class*="footer"],
.page-entry-content [id*="footer"],
.page-entry-content .elementor-location-footer,
.page-entry-content .wp-block-template-part,
.page-entry-content .kt-row-layout-wrap:last-child:has(a[href*="linkedin"], a[href*="youtube"], a[href*="facebook"], a[href*="instagram"]),
.page-entry-content .kb-row-layout-wrap:last-child:has(a[href*="linkedin"], a[href*="youtube"], a[href*="facebook"], a[href*="instagram"]),
.page-entry-content .wp-block-kadence-rowlayout:last-child:has(a[href*="linkedin"], a[href*="youtube"], a[href*="facebook"], a[href*="instagram"]) {
  display: none !important;
}
.content-section { background: var(--ivory-warm); padding-top: 50px; }
.content-inner {
  max-width: 840px;
  color: var(--text-body);
}
.entry-content {
  font-size: 16px;
  line-height: 1.9;
}
.entry-content > * { margin-bottom: 1.25rem; }
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--plum);
  line-height: 1.15;
  margin-top: 2rem;
}
.entry-content a,
.blog-body h4 a {
  color: inherit;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
.entry-content img,
.single-featured img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.single-featured {
  margin-top: -20px;
  padding: 0 5%;
}
.blog-img {
  display: flex;
  overflow: hidden;
  text-decoration: none;
}
.blog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-img .cat { z-index: 2; }
.blog-img .icon-text { position: relative; z-index: 1; }
.blog-card .blog-body h4 a { text-decoration: none; }
.footer-col ul,
.footer-col li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-listing { padding-top: 50px; }
.pagination-wrap,
.post-navigation-wrap {
  margin-top: 42px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pagination-wrap a,
.pagination-wrap span,
.post-navigation-wrap a {
  color: var(--plum);
  margin-right: 14px;
  text-decoration: none;
}
.search-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.search-field {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(197,153,75,0.35);
  background: var(--ivory);
  color: var(--text-dark);
}
.search-submit {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.elementor-full-width {
  padding-top: 80px;
  background: var(--ivory-warm);
}
.wp-block-image,
.wp-block-quote,
.wp-block-pullquote { margin: 2rem 0; }
.wp-block-quote {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  color: var(--plum);
}
.shop-content-inner {
  max-width: 1180px;
  color: var(--text-body);
}
.woocommerce .products,
.woocommerce-page .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0;
  padding: 0;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(107,46,74,0.1);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(78,29,53,0.08);
}
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  margin: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--plum);
  padding: 20px 20px 6px;
}
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  color: var(--gold);
  padding: 0 20px 16px;
  font-weight: 500;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 2px;
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
}
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  margin: 0 20px 22px;
}
.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 28px;
  color: var(--text-muted);
}
@media (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}
@media (max-width: 600px) {
  .admin-bar .nav { top: 0; }
  .page-hero { padding-top: 120px; }
  .single-post-hero { min-height: 400px; }
  .search-form { flex-direction: column; }
}
