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

:root {
  --cream: #f5ede8;
  --crimson: #8b1a2a;
  --gold: #e8c84a;
  --text-dark: #2a2118;
  --text-mid: #4a3f35;
  --text-light: #8a7d72;
  --bird: #c8b8b0;
}

html, body {
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── PINNED INTRO SECTION ── */
.section-intro {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── LEFT HALF ── */
.intro-left {
  display: flex;
  align-items: center;
  padding: 60px 40px 60px 80px;
  overflow: hidden;
}

.card-testimonial {
  background: #fff;
  padding: 36px 32px;
  max-width: 300px;
  box-shadow: 0 2px 24px rgba(42,33,24,0.06);
}
.card-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
}
.card-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.card-attr {
  font-size: 14px;
  font-style: italic;
  color: var(--text-light);
}
.stat-circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  margin-top: 24px;
}
.stat-number {
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.4;
  margin-top: 6px;
}

/* ── RIGHT HALF ── */
.intro-right {
  display: flex;
  align-items: center;
  padding: 60px 80px 60px 40px;
  overflow: hidden;
}

.right-content {
  text-align: right;
  width: 100%;
}

.intro-tagline {
  font-size: clamp(1.9rem, 2.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.intro-divider {
  margin-top: 36px;
  height: 1px;
  background: var(--crimson);
  opacity: 0.35;
  transform-origin: left center;
  transform: scaleX(0);
}

/* ── BIRDS ── */
.birds-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.bird {
  position: absolute;
  opacity: 0;
}
