/* ==========================================================================
   Nicole Uhrich — Social Media Consulting & Coaching
   High-End Luxury Editorial Design System (Rich Gradients, Ambient Lighting & Dimensional Depth)
   ========================================================================== */

:root {
  /* Warm Luxury Dimensional Palette */
  --bg-canvas: #F5EFE6;
  --bg-gradient-hero: radial-gradient(85% 70% at 50% 0%, #FAF7F0 0%, #EFE7DA 50%, #E3D9C9 100%);
  --bg-gradient-section: radial-gradient(90% 80% at 50% 20%, #F9F5EC 0%, #EDE4D4 60%, #E0D5C2 100%);
  --bg-gradient-dark: radial-gradient(100% 100% at 50% 10%, #201A18 0%, #141110 80%, #0D0B0A 100%);
  
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-elevated: #FFFFFF;
  --bg-card-subtle: rgba(250, 246, 238, 0.7);

  --ink-primary: #191412;
  --ink-secondary: #453E38;
  --ink-muted: #756D65;
  --cream-pure: #FAF8F5;
  --cream-subtle: rgba(250, 248, 245, 0.85);

  /* Deep Wine / Bordeaux Luxury Glow */
  --wine-primary: #801424;
  --wine-hover: #630F1C;
  --wine-vibrant: #A01A2F;
  --wine-glow: rgba(160, 26, 47, 0.18);
  --wine-soft: #F9EAEB;
  --wine-tint: #F2D8DC;
  --wine-border: rgba(128, 20, 36, 0.22);
  --rose-accent: #E5B4BC;
  --gold-glow: rgba(203, 164, 113, 0.15);

  /* Rich Elevation & Dimension Shadows */
  --border-light: rgba(30, 24, 20, 0.08);
  --border-medium: rgba(30, 24, 20, 0.14);
  --border-glass: rgba(255, 255, 255, 0.85);

  --shadow-xs: 0 2px 8px rgba(30, 24, 20, 0.04);
  --shadow-sm: 0 8px 24px -4px rgba(30, 24, 20, 0.06);
  --shadow-md: 0 16px 40px -6px rgba(30, 24, 20, 0.09), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  --shadow-lg: 0 28px 64px -10px rgba(30, 24, 20, 0.13), 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 1px 2px rgba(255, 255, 255, 1);
  --shadow-xl: 0 36px 88px -12px rgba(30, 24, 20, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.9), inset 0 1px 2px rgba(255, 255, 255, 1);
  --shadow-wine: 0 14px 36px rgba(128, 20, 36, 0.3);
  --shadow-dark: 0 32px 72px rgba(0, 0, 0, 0.55);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 9999px;

  --max-w: 1240px;
  --trans-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.2s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-canvas);
  color: var(--ink-primary);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background-color: var(--bg-canvas);
  background-image: 
    radial-gradient(rgba(128, 20, 36, 0.035) 1px, transparent 1px),
    radial-gradient(80% 80% at 50% 0%, #FAF6EE 0%, #EFE7DA 45%, #E2D9C8 100%);
  background-size: 32px 32px, 100% 100%;
  color: var(--ink-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Radial Glow Elements */
.ambient-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  z-index: 0;
  opacity: 0.7;
}

.orb-hero-top {
  top: -120px;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(160, 26, 47, 0.22) 0%, rgba(203, 164, 113, 0.12) 50%, transparent 70%);
}

.orb-cases-left {
  top: 30%;
  left: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(160, 26, 47, 0.16) 0%, transparent 70%);
}

.orb-funnel-right {
  bottom: 8%;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 26, 47, 0.2) 0%, rgba(203, 164, 113, 0.1) 50%, transparent 70%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
}

.heading-serif {
  font-family: 'Fraunces', serif;
}

.script-accent {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--wine-primary);
  font-size: 1.4em;
  line-height: 1;
}

p {
  color: var(--ink-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

section {
  padding: 110px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrows & Badges with Shimmer */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine-primary);
  margin-bottom: 16px;
}

.eyebrow-pill {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--wine-soft) 100%);
  border: 1px solid var(--wine-border);
  color: var(--wine-primary);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(128, 20, 36, 0.08);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--trans-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--wine-primary) 0%, var(--wine-hover) 100%);
  color: #FFFFFF;
  border-color: var(--wine-primary);
  box-shadow: var(--shadow-wine);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9C1B2F 0%, var(--wine-primary) 100%);
  border-color: #9C1B2F;
  color: #FFFFFF;
  box-shadow: 0 16px 40px rgba(128, 20, 36, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--wine-primary);
  color: var(--wine-primary);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--trans-fast);
}

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

/* ==========================================================================
   Top Banner & Sticky Navigation
   ========================================================================== */
.top-banner {
  background: var(--ink-primary);
  color: var(--cream-subtle);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-banner strong {
  color: var(--rose-accent);
}

.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 8px 24px -6px rgba(30, 24, 20, 0.05);
  transition: all var(--trans-fast);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.brand-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo .dot {
  color: var(--wine-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-cta-mobile {
  display: none;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--wine-primary);
  transition: width var(--trans-fast);
}

.nav-link:hover {
  color: var(--wine-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-nav-cta {
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--r-pill);
  background: var(--wine-primary);
  color: #FFF;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--wine-hover);
}

/* Mobile Nav Toggle (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-primary);
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-inner {
    padding: 14px 20px;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(245, 239, 230, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 16px 32px -12px rgba(30, 24, 20, 0.14);
    max-height: 0;
    overflow-y: auto;
    visibility: hidden;
    padding: 0 20px;
    transition: max-height var(--trans-smooth), visibility var(--trans-smooth);
  }

  .nav-menu.is-open {
    max-height: calc(100vh - 64px);
    visibility: visible;
    padding: 8px 20px 20px;
  }

  .nav-link {
    width: 100%;
    padding: 14px 2px;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-cta-mobile {
    display: block;
    text-align: center;
    margin-top: 14px;
  }
}

@media (max-width: 400px) {
  .brand-logo {
    font-size: 19px;
  }
}

/* ==========================================================================
   Hero Section with Radiant Lighting & Dimension
   ========================================================================== */
.hero-section {
  padding-top: 64px;
  padding-bottom: 56px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-content {
  max-width: 620px;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 3.9rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--ink-primary);
}

.hero-title i {
  font-style: italic;
  font-weight: 400;
  color: var(--wine-primary);
  position: relative;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-desc strong {
  color: var(--ink-primary);
  font-weight: 600;
}

.hero-offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 34px;
}

@media (max-width: 600px) {
  .hero-offerings {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.hero-offering-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 100%);
  border: 1px solid var(--border-glass);
  padding: 16px 20px;
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: all var(--trans-fast);
}

.hero-offering-item:hover {
  border-color: var(--wine-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.offering-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-soft) 0%, var(--wine-tint) 100%);
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(128, 20, 36, 0.12);
}

.offering-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-primary);
}

.offering-text p {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.35;
  margin-top: 2px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-sub {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-muted);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.avatar-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -8px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-canvas) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.avatar-chip:first-child {
  margin-left: 0;
}

/* Hero Visual with Layered Glow & Dimension */
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-card {
  position: relative;
  background: #FFFFFF;
  padding: 16px 16px 54px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-glass);
  transform: rotate(-1.5deg);
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
  max-width: 440px;
  width: 100%;
}

.hero-photo-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 40px 96px -12px rgba(30, 24, 20, 0.22);
}

.hero-img-inner {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: #EDE6D8;
}

.hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-caption {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.caption-name {
  font-family: 'Caveat', cursive;
  font-size: 25px;
  font-weight: 700;
  color: var(--ink-primary);
}

.caption-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}

/* Floating Badges with Subtle Glow */
.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(1deg); }
}

.badge-top-left {
  top: 10%;
  left: -24px;
}

.badge-bottom-right {
  bottom: 24px;
  right: -20px;
  background: var(--ink-primary);
  color: #FFFFFF;
  border-color: var(--ink-primary);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  animation-delay: -3s;
}

@media (max-width: 600px) {
  .badge-top-left { top: 4%; left: 4px; }
  .badge-bottom-right { bottom: 8px; right: 4px; }
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-soft) 0%, var(--wine-tint) 100%);
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(128, 20, 36, 0.15);
}

.badge-bottom-right .badge-icon {
  background: rgba(229, 180, 188, 0.2);
  color: var(--rose-accent);
}

.badge-info .badge-val {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-primary);
}

.badge-bottom-right .badge-val {
  color: #FFFFFF;
}

.badge-info .badge-lbl {
  font-size: 11.5px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}

.badge-bottom-right .badge-lbl {
  color: var(--cream-subtle);
}

/* Marquee / Ticker with Subtle Glass Depth */
.marquee-container {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16.5px;
  color: var(--ink-secondary);
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.marquee-item .dot {
  color: var(--wine-primary);
  font-style: normal;
  font-size: 20px;
}

/* ==========================================================================
   Metrics Bar
   ========================================================================== */
.metrics-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px -10px rgba(30, 24, 20, 0.05);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 960px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 500px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.metric-card {
  border-left: 3.5px solid var(--wine-primary);
  padding-left: 20px;
}

.metric-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 600;
  color: var(--ink-primary);
  line-height: 1;
}

.metric-num span {
  color: var(--wine-primary);
}

.metric-title {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-primary);
  margin-top: 8px;
}

.metric-desc {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ==========================================================================
   Interactive Case Studies (Elevated 3D Surface)
   ========================================================================== */
.cases-section {
  padding-top: 110px;
  position: relative;
}

.section-head-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-head-center h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 10px;
  margin-bottom: 16px;
  color: var(--ink-primary);
}

.section-head-center p {
  font-size: 17px;
  color: var(--ink-secondary);
}

/* Case Tabs Controller */
.cases-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.case-tab-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--border-medium);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: all var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}

.case-tab-btn:hover {
  border-color: var(--wine-primary);
  color: var(--wine-primary);
  background: #FFFFFF;
}

.case-tab-btn.active {
  background: var(--wine-primary);
  color: #FFFFFF;
  border-color: var(--wine-primary);
  box-shadow: var(--shadow-wine);
}

.case-tab-btn .tab-badge {
  background: var(--wine-soft);
  color: var(--wine-primary);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
}

.case-tab-btn.active .tab-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #FFF;
}

/* Case Detail Card */
.case-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.case-pane.active {
  display: block;
}

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

.case-detail-card {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.case-inner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

@media (max-width: 960px) {
  .case-inner-grid {
    grid-template-columns: 1fr;
  }
}

.case-data-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .case-data-col {
    padding: 28px 20px;
  }
}

.case-client-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wine-primary);
  margin-bottom: 12px;
}

.case-data-col h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  margin-bottom: 14px;
}

.case-data-col p.case-lead {
  font-size: 16px;
  color: var(--ink-secondary);
  margin-bottom: 28px;
}

/* Comparison Boxes */
.comparison-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .comparison-boxes {
    grid-template-columns: 1fr;
  }
}

.box-before {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}

.box-after {
  background: linear-gradient(135deg, #FFF6F7 0%, var(--wine-soft) 100%);
  border: 1.5px solid var(--wine-border);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(128, 20, 36, 0.08);
}

.box-after::after {
  content: '✓ VERIFIZIERT';
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--wine-primary);
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  box-shadow: 0 2px 6px rgba(128, 20, 36, 0.25);
}

.box-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.box-after .box-label {
  color: var(--wine-primary);
}

.box-stat {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-primary);
  margin-bottom: 6px;
}

.box-after .box-stat {
  color: var(--wine-primary);
}

.box-note {
  font-size: 12.5px;
  color: var(--ink-secondary);
}

.case-takeaways {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.case-takeaways h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-primary);
  margin-bottom: 12px;
}

.takeaway-list {
  display: grid;
  gap: 8px;
}

.takeaway-list li {
  font-size: 14px;
  color: var(--ink-secondary);
  padding-left: 22px;
  position: relative;
}

.takeaway-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wine-primary);
  font-weight: 700;
}

/* Case Visual Column */
.case-visual-col {
  background: var(--bg-gradient-dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .case-visual-col {
    padding: 32px 20px;
  }
}

.case-mockup-frame {
  max-width: 420px;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
  transition: transform var(--trans-smooth);
}

.case-mockup-frame:hover {
  transform: scale(1.02);
}

.case-mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.case-dual-mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 440px;
  width: 100%;
}

.case-dual-mockup .mockup-card {
  background: #1C1917;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-dark);
  position: relative;
}

.case-dual-mockup .mockup-card img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(20, 18, 14, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  text-align: center;
  backdrop-filter: blur(6px);
}

.mockup-tag.highlight {
  background: var(--wine-primary);
}

.case-insights-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  width: 100%;
}

.insights-card-img {
  background: #FFFFFF;
  border-radius: var(--r-md);
  padding: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.insights-card-img .card-lbl {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.insights-card-img img {
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
}

.case-visual-badge {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Feedback & Testimonial Section (Rich Dimensional Backdrop & Cards)
   ========================================================================== */
.testimonial-section {
  background: radial-gradient(90% 80% at 50% 30%, #F5EDE0 0%, #E8DEC9 70%, #DECFA9 100%);
  padding: 120px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.testimonials-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .testimonials-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.wa-testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
}

.wa-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.wa-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 22px;
}

.wa-sender-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-soft) 0%, var(--wine-tint) 100%);
  color: var(--wine-primary);
  border: 1.5px solid var(--wine-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(128, 20, 36, 0.12);
}

.wa-sender-meta h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-primary);
}

.wa-sender-meta span {
  font-size: 12px;
  color: var(--ink-muted);
}

.wa-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #059669;
  background: #ECFDF5;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid #A7F3D0;
  box-shadow: 0 1px 3px rgba(5, 150, 105, 0.1);
}

/* WhatsApp Speech Bubble with Authentic Subtle Tail & Shading */
.wa-speech-bubble {
  background: #F4EEE7;
  color: #111B21;
  border-radius: 4px 18px 18px 18px;
  padding: 24px 26px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  font-size: 14.5px;
  line-height: 1.65;
  flex-grow: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.wa-speech-bubble p {
  color: #111B21;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.wa-speech-bubble p:last-child {
  margin-bottom: 6px;
}

.wa-bubble-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.wa-heart-tag {
  background: #FFFFFF;
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #54656F;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.wa-time-checks {
  font-size: 11.5px;
  color: #667781;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-time-checks .checks {
  color: #0284C7;
  font-weight: 700;
}

.wa-card-takeaway {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, #FFF6F7 0%, var(--wine-soft) 100%);
  border: 1px solid var(--wine-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--wine-primary);
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(128, 20, 36, 0.06);
}

/* ==========================================================================
   The 2 Models: Done With You (DWY) vs Done For You (DFY)
   ========================================================================== */
.offer-section {
  padding: 120px 0;
  position: relative;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.offer-card {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  padding: 48px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--trans-smooth);
}

@media (max-width: 600px) {
  .offer-card {
    padding: 32px 20px;
  }
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--wine-border);
}

.offer-card.featured-card {
  border-color: var(--wine-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFB 100%);
  box-shadow: 0 28px 72px -10px rgba(128, 20, 36, 0.16), 0 0 0 1px rgba(128, 20, 36, 0.15);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine-primary);
  background: var(--wine-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid var(--wine-border);
  box-shadow: 0 2px 6px rgba(128, 20, 36, 0.08);
}

.featured-card .offer-badge {
  background: linear-gradient(135deg, var(--wine-primary) 0%, var(--wine-hover) 100%);
  color: #FFFFFF;
  border-color: var(--wine-primary);
  box-shadow: 0 4px 12px rgba(128, 20, 36, 0.25);
}

.offer-card h3 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.offer-subline {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--wine-primary);
  margin-bottom: 14px;
}

.offer-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: 20px;
}

.offer-desc {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--ink-secondary);
}

.offer-features-list {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.offer-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-secondary);
}

.offer-feature-item strong {
  color: var(--ink-primary);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wine-soft);
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.offer-ideal-for {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.offer-card .btn {
  width: 100%;
}

.offer-note {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--ink-muted);
}

/* ==========================================================================
   Process Roadmap Section
   ========================================================================== */
.process-section {
  background: radial-gradient(85% 75% at 50% 20%, #F5ECE0 0%, #E8DFC8 70%, #DECEB4 100%);
  padding: 110px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.process-step-card {
  background: #FFFFFF;
  border-radius: var(--r-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--trans-smooth);
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--wine-border);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--wine-primary);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--ink-primary);
}

.process-step-card p {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   About Nicole Uhrich Section
   ========================================================================== */
.about-section {
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-photo-wrapper {
  position: relative;
}

.about-polaroid {
  background: #FFFFFF;
  padding: 18px 18px 54px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-xl);
  transform: rotate(1.8deg);
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
}

.about-polaroid:hover {
  transform: rotate(0deg);
  box-shadow: 0 40px 96px -10px rgba(30, 24, 20, 0.22);
}

.about-photo-inner {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #EDE6D8;
}

.about-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-signature {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink-primary);
}

.about-text-content h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-top: 10px;
  margin-bottom: 22px;
  color: var(--ink-primary);
}

.about-text-content p {
  font-size: 16px;
  color: var(--ink-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-stats-row {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.about-stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--wine-primary);
  font-weight: 600;
  display: block;
  line-height: 1;
}

.about-stat-item .lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 4px;
  display: block;
}

/* ==========================================================================
   Lead Qualification Funnel & Interactive Appointment Picker
   ========================================================================== */
.funnel-section {
  padding: 120px 0;
  background: radial-gradient(90% 80% at 50% 20%, #F5ECE0 0%, #E8DFC8 60%, #DECFA9 100%);
  border-top: 1px solid var(--border-light);
  position: relative;
}

.funnel-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .funnel-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.funnel-intro h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--ink-primary);
  margin-top: 12px;
  margin-bottom: 20px;
}

.funnel-intro p.lead {
  font-size: 17px;
  color: var(--ink-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

.funnel-bullets {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.funnel-bullet-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-primary);
}

.bullet-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-soft) 0%, var(--wine-tint) 100%);
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(128, 20, 36, 0.12);
}

/* Funnel Form Card with Sculpted 3D Elevation */
.funnel-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  color: var(--ink-primary);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 600px) {
  .funnel-form-card {
    padding: 28px 18px;
  }
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
  color: var(--ink-primary);
}

.form-header p {
  font-size: 14px;
  color: var(--ink-muted);
}

.form-group-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .form-group-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  width: 100%;
}

.form-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-primary);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  padding: 13px 16px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--r-sm);
  background: #FFFFFF;
  color: var(--ink-primary);
  transition: all var(--trans-fast);
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wine-primary);
  box-shadow: 0 0 0 3px rgba(128, 20, 36, 0.15);
}

.form-field textarea {
  min-height: 90px;
  resize: vertical;
}

/* Radio Selection - Redesigned to Never Overflow */
.radio-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

@media (max-width: 540px) {
  .radio-cards-grid {
    grid-template-columns: 1fr;
  }
}

.radio-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border-medium);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  cursor: pointer;
  background: #FFFFFF;
  color: var(--ink-secondary);
  font-size: 13.5px;
  font-weight: 500;
  transition: all var(--trans-fast);
  box-sizing: border-box;
  min-height: 48px;
  box-shadow: var(--shadow-xs);
}

.radio-card-label:hover {
  border-color: var(--wine-primary);
  background: var(--wine-soft);
  color: var(--wine-primary);
}

.radio-card-label:has(input:checked) {
  border-color: var(--wine-primary);
  background: linear-gradient(135deg, #FFF6F7 0%, var(--wine-soft) 100%);
  color: var(--wine-primary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(128, 20, 36, 0.12);
}

.radio-card-label input {
  accent-color: var(--wine-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}

.radio-card-label span {
  flex: 1;
  line-height: 1.35;
}

/* Appointment Time Picker Section inside Form */
.appointment-picker-box {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
}

.appointment-picker-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.appointment-picker-box p.picker-sub {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.appointment-slot-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 520px) {
  .appointment-slot-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.slot-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wine-primary);
  margin-bottom: 4px;
}

.picker-notice-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--wine-primary);
  background: #FFFFFF;
  border: 1px solid var(--wine-border);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-top: 10px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(128, 20, 36, 0.06);
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  font-size: 16px;
}

.form-privacy-note {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Success State View */
.form-success-card {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-card.active {
  display: block;
}

.success-check-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--wine-primary);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(128, 20, 36, 0.3);
}

.form-success-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.form-success-card p {
  font-size: 16px;
  color: var(--ink-secondary);
  max-width: 440px;
  margin: 0 auto 28px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 120px 0;
  position: relative;
}

.faq-accordion {
  max-width: 840px;
  margin: 48px auto 0;
  border-top: 1.5px solid var(--border-medium);
}

.faq-item {
  border-bottom: 1.5px solid var(--border-medium);
}

.faq-summary {
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: var(--ink-primary);
  transition: color var(--trans-fast);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: var(--wine-primary);
}

.faq-icon {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--wine-primary);
  transition: transform var(--trans-smooth);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 0 24px 0;
  font-size: 15.5px;
  color: var(--ink-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink-primary);
  color: var(--cream-subtle);
  padding: 64px 0 36px;
  border-top: 1px solid var(--border-light);
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.2);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--cream-subtle);
  font-size: 14px;
  max-width: 320px;
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-nav-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-accent);
  margin-bottom: 16px;
}

.footer-nav-list {
  display: grid;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 14px;
  color: var(--cream-subtle);
}

.footer-nav-list a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ==========================================================================
   Live Social Proof Toast & Sticky Mobile CTA Bar
   ========================================================================== */
.live-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  border-radius: var(--r-pill);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.toast-text {
  font-size: 13px;
  color: var(--ink-primary);
  font-weight: 500;
}

.toast-text strong {
  font-weight: 700;
  color: var(--wine-primary);
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-muted);
  font-size: 16px;
  padding: 2px 4px;
}

@media (max-width: 600px) {
  .live-toast {
    bottom: 80px;
    left: 16px;
    right: 16px;
    border-radius: var(--r-md);
  }
}

/* Sticky Bottom Ad-Bar for Mobile */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: rgba(24, 21, 19, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform var(--trans-smooth);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.sticky-text {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 500;
}

.sticky-text span {
  display: block;
  font-size: 11px;
  color: var(--rose-accent);
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
}
