/**
 * Global Stylesheet & Design Tokens - Rebecca Field Strategic Advisory
 *
 * Brand Palette:
 * Primary Slate: #46607a
 * Secondary Slate: #7b93ab
 * Animated Gold: Linear gradient (100deg, #8F7127 0%, #B3903F 25%, #DCC279 45%, #E8D795 52%, #D5BC6F 60%, #A8863D 82%, #8F7127 100%)
 * Warm Champagne Sand: #ded8c6
 * Cream Background: #faf8f2
 */

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

:root {
  /* Brand Palette */
  --color-slate-dark: #46607a;
  --color-slate-mid: #7b93ab;
  --color-slate-light: #e6ebf0;
  --color-warm-sand: #ded8c6;
  --color-soft-sand: #ece8dc;
  --color-cream-bg: #faf8f2;
  --color-surface-cream: #faf8f2;
  --color-surface-card: #f4f0e6;
  --color-text-heading: #46607a;
  --color-text-body: #1c2836;
  --color-text-muted: #3d4e5f;

  /* Animated Gold Shimmer Gradient Stops */
  --gold-stop-0: #8F7127;
  --gold-stop-25: #B3903F;
  --gold-stop-45: #DCC279;
  --gold-stop-52: #E8D795;
  --gold-stop-60: #D5BC6F;
  --gold-stop-82: #A8863D;
  --gold-stop-100: #8F7127;

  /* Shimmer Gold Gradient Definition (~100deg) */
  --gradient-gold-shimmer: linear-gradient(100deg,
      var(--gold-stop-0) 0%,
      var(--gold-stop-25) 25%,
      var(--gold-stop-45) 45%,
      var(--gold-stop-52) 52%,
      var(--gold-stop-60) 60%,
      var(--gold-stop-82) 82%,
      var(--gold-stop-100) 100%);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Elevational Shadows */
  --shadow-sm: 0 2px 8px rgba(70, 96, 122, 0.06);
  --shadow-md: 0 8px 24px rgba(70, 96, 122, 0.09);
  --shadow-lg: 0 16px 40px rgba(70, 96, 122, 0.12);
  --shadow-gold-glow: 0 4px 20px rgba(220, 194, 121, 0.35);

  /* Border Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
}

/* CSS Reset & Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-cream-bg);
  color: var(--color-slate-dark);
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-text-heading);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  font-size: clamp(1.95rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2.15rem);
}

h4 {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-slate-dark);
  margin-bottom: 1.35rem;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

li {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

a {
  color: var(--color-slate-dark);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
  overflow-wrap: break-word;
}

a:hover {
  color: var(--gold-stop-82);
}

/* Layout Utilities */
.site-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

@media (min-width: 576px) {
  .site-container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

.section-padding {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Animated Gold Shimmer Animation & Classes */
@keyframes gold-shimmer-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gold-shimmer-text {
  background: var(--gradient-gold-shimmer);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer-animation 8s ease infinite;
  display: inline-block;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
  vertical-align: bottom;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.gold-shimmer-rule {
  height: 2px;
  width: 100%;
  max-width: 120px;
  margin: 1.5rem auto;
  border: none;
  background: var(--gradient-gold-shimmer);
  background-size: 250% 100%;
  animation: gold-shimmer-animation 8s ease infinite;
}

/* Daisy Icon Divider Component Objects */
.daisy-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 320px;
  margin: 1.75rem auto;
}

@media (max-width: 480px) {
  .daisy-divider {
    gap: 0.85rem;
    max-width: 220px;
    margin: 1.35rem auto;
  }
}

.daisy-divider::before,
.daisy-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(123, 147, 171, 0.35);
}

/* Light line variation for dark background sections */
.daisy-divider-dark-bg::before,
.daisy-divider-dark-bg::after {
  background: rgba(222, 216, 198, 0.4);
}

.daisy-divider-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .daisy-divider-icon {
    width: 26px;
    height: 26px;
  }
}

/* Button & Badge Component Objects */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.65rem;
  min-height: 48px;
  line-height: 1.3;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  text-wrap: balance;
  white-space: normal;
  box-sizing: border-box;
  touch-action: manipulation;
}

.gold-shimmer-btn,
.btn-primary,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.65rem;
  min-height: 48px;
  line-height: 1.3;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate-dark);
  background: rgba(250, 248, 242, 0.95);
  border-radius: var(--radius-pill);
  position: relative;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
  touch-action: manipulation;
}

.gold-shimmer-btn::before,
.btn-primary::before,
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  padding: 1.5px;
  background: var(--gradient-gold-shimmer);
  background-size: 250% 100%;
  animation: gold-shimmer-animation 8s ease infinite;
  -webkit-mask: linear-gradient(#faf8f2 0 0) content-box, linear-gradient(#faf8f2 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.gold-shimmer-btn:hover,
.btn-primary:hover,
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-slate-dark);
  background: rgba(250, 248, 242, 1);
}

.gold-shimmer-badge,
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8F7127;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 0.35rem;
  cursor: default;
  position: relative;
  text-wrap: balance;
}

.gold-shimmer-badge::before,
.section-eyebrow::before {
  display: none !important;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-slate-dark);
  border-color: var(--color-slate-dark);
}

.btn-outline:hover {
  background-color: var(--color-slate-dark);
  color: var(--color-cream-bg);
}

@media (max-width: 576px) {
  .btn,
  .gold-shimmer-btn,
  .btn-primary,
  .btn-gold,
  .btn-outline {
    font-size: 0.84rem;
    padding: 0.75rem 1.25rem;
    letter-spacing: 0.06em;
  }
}