/* ============================================================
   Sierra Sage Wallcoverings & Walls In Motion — Sage Pitch
   style.css
   ============================================================ */

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

:root {
  --forest:    #1c2b1f;   /* deep forest green — primary dark */
  --sage:      #7a9e7e;   /* sage green — brand accent */
  --sage-lt:   #c8daca;   /* light sage — subtle bg tints */
  --gold:      #b89660;   /* warm gold — highlight accent */
  --cream:     #fafaf6;   /* page background */
  --warm-gray: #f0ede8;   /* section alt background */
  --border:    #e2ddd7;   /* dividers */
  --text:      #1a1a1a;   /* body text */
  --muted:     #6b6b6b;   /* secondary text */
  --white:     #ffffff;
  --radius:    14px;
  --shadow:    0 4px 32px rgba(28,43,31,.10);
  --shadow-lg: 0 16px 64px rgba(28,43,31,.16);
}

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 7rem 0; }
.section--alt { background: var(--warm-gray); }
.section--dark {
  background: var(--forest);
  color: var(--white);
}

/* --- Utility --- */
.text-center { text-align: center; }

/* ============================================================
   BRAND HEADER
   ============================================================ */
.brand-header {
  width: 100%;
  background: var(--forest);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(122,158,126,.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(184,150,96,.10) 0%, transparent 70%);
  pointer-events: none;
}
.brand-header__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: .6rem;
}
.brand-header__line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.brand-header__line--right {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.brand-header__amp {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: .05em;
}
.brand-header__name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.25;
}
.brand-header__name span { color: var(--sage-lt); }
.brand-header__sub {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .75rem;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 7rem 0 5rem;
  text-align: center;
  position: relative;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-lt), transparent);
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(122,158,126,.1);
  border: 1px solid rgba(122,158,126,.3);
  border-radius: 99px;
  padding: .35rem 1.1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
}
.kicker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.85); }
}

.hero__headline {
  color: var(--forest);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--sage);
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.hero__owners {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .55rem 1.5rem .55rem .85rem;
  font-size: .85rem;
  color: var(--muted);
  box-shadow: var(--shadow);
}
.owners-avatars {
  display: flex;
  gap: -.25rem;
}
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
}
.avatar--chandi { background: linear-gradient(135deg, var(--sage), #4a7a50); margin-right: -8px; }
.avatar--steve  { background: linear-gradient(135deg, #8a7560, var(--gold)); }
.owners-text strong { color: var(--forest); font-weight: 700; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 2rem 0 7rem;
  text-align: center;
}
.video-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--forest);
  border: 1px solid rgba(122,158,126,.2);
}
.video-wrapper::before {
  /* Subtle top shine */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,218,202,.5), transparent);
  z-index: 2;
  pointer-events: none;
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.video-caption {
  margin-top: 1.25rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.video-caption span { color: var(--sage); font-weight: 700; }

/* ============================================================
   INTRO / MEET SAGE
   ============================================================ */
.meet-section { text-align: center; }
.meet-section h2 { color: var(--forest); margin-bottom: 1.25rem; }
.meet-section .lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.persona-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: .5rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--forest);
  box-shadow: 0 2px 12px rgba(28,43,31,.06);
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 4rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--border);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-lt);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(122,158,126,.1);
  border: 1.5px solid rgba(122,158,126,.2);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 { color: var(--forest); margin-bottom: .6rem; }
.feature-card p  { color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ============================================================
   GATEKEEPER SPOTLIGHT  (dark section)
   ============================================================ */
.gatekeeper {
  position: relative;
  overflow: hidden;
}
.gatekeeper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 90% 20%, rgba(122,158,126,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5%  80%, rgba(184,150,96,.08) 0%, transparent 60%);
  pointer-events: none;
}

.gatekeeper__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.gatekeeper__copy .eyebrow { color: var(--sage-lt); }
.gatekeeper__copy h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.gatekeeper__copy h2 em {
  font-style: italic;
  color: var(--sage-lt);
}
.gatekeeper__copy p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.intercept-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.intercept-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .93rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.intercept-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  display: grid;
  place-items: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.intercept-icon--green {
  background: rgba(122,158,126,.18);
  border-color: rgba(122,158,126,.35);
}

/* Script card */
.gatekeeper__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2.25rem;
  backdrop-filter: blur(8px);
}
.card-label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.card-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,.25);
}

.script-exchange { display: grid; gap: 1rem; }
.script-bubble {
  border-radius: 14px;
  padding: 1rem 1.25rem;
  font-size: .88rem;
  line-height: 1.6;
  max-width: 92%;
}
.script-bubble--caller {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border-bottom-left-radius: 4px;
}
.script-bubble--sage {
  background: linear-gradient(135deg, rgba(122,158,126,.35), rgba(74,122,80,.4));
  border: 1px solid rgba(122,158,126,.35);
  color: var(--white);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.bubble-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: .3rem;
}
.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 99px;
  padding: .25rem .85rem;
  font-size: .72rem;
  font-weight: 700;
  color: #86efac;
  margin-top: .5rem;
}
.outcome-badge--red {
  background: rgba(239,68,68,.1);
  border-color: rgba(239,68,68,.25);
  color: #fca5a5;
}

/* ============================================================
   WHAT SAGE HANDLES  (two-col list)
   ============================================================ */
.handles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.handle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.handle-item:hover {
  border-color: var(--sage-lt);
  box-shadow: var(--shadow);
}
.handle-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(122,158,126,.12);
  border: 1.5px solid rgba(122,158,126,.3);
  display: grid;
  place-items: center;
  font-size: .75rem;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: .15rem;
  font-weight: 700;
}
.handle-item p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}
.handle-item p strong { color: var(--forest); display: block; margin-bottom: .15rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,.45);
  padding: 3rem 0;
  text-align: center;
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.footer__brand span { color: var(--sage-lt); }
.footer__powered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-bottom: 2rem;
}
.powered-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(122,158,126,.15);
  border: 1px solid rgba(122,158,126,.25);
  border-radius: 99px;
  padding: .25rem .85rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--sage-lt);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.powered-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2.2s ease-in-out infinite;
}
.footer__copy {
  font-size: .78rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.07);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — TABLET  ≤900px
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 5.5rem 0; }

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

  .gatekeeper__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE  ≤640px
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  .brand-header { padding: 1.75rem 1.25rem; }
  .brand-header__name { letter-spacing: .02em; }

  .hero { padding: 4.5rem 0 3.5rem; }

  .features-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .feature-card  { padding: 1.75rem 1.5rem; }

  .handles-grid  { grid-template-columns: 1fr; gap: 1rem; }

  .gatekeeper__card { padding: 1.5rem; }

  .persona-pills { gap: .6rem; }

  .footer__copy { font-size: .75rem; }
  .footer__powered { flex-wrap: wrap; }

  .video-section { padding: 0 0 4rem; }
  .video-wrapper { border-radius: 14px; }
  .video-wrapper video { border-radius: 14px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
