/* ═══════════════════════════════════════════
   BODY — HOMEPAGE
═══════════════════════════════════════════ */
body { background: var(--dark-1); }

/* ═══════════════════════════════════════════
   HERO — DARK CINEMATIC
═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark-0);
  overflow: hidden;
  padding: 80px 5vw 4rem;
}

/* Grain noise overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .05;
  pointer-events: none;
  z-index: 1;
}

/* Ambient fire glow */
.hero-glow {
  position: absolute;
  bottom: -10%;
  right: 0; left: 0;
  height: 70%;
  background: radial-gradient(ellipse 70% 100% at 65% 100%, rgba(255,87,34,.22) 0%, rgba(255,87,34,.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* Decorative oversized word */
.hero-bg-word {
  position: absolute;
  right: 3vw;
  bottom: -6%;
  font-family: 'Jost', sans-serif;
  font-size: 28vw;
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,87,34,.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Left: copy */
.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 50%;
  padding-right: 3rem;
  padding-top: 6vh;
  padding-bottom: 0;
  /* min-height instead of fixed height so content is never clipped on short viewports */
  min-height: calc(100vh - 80px - 4rem);
  min-height: max(520px, calc(100vh - 80px - 4rem));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-headline {
  /* semantic h1 — reset UA defaults so the visual is unchanged */
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  opacity: 0;
  animation: hero-up .9s cubic-bezier(.23,1,.32,1) .3s forwards;
}
.hero-headline .line1 {
  display: block;
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: .95;
  letter-spacing: -.025em;
}
.hero-headline .line2 {
  display: block;
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 400;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,238,228,.38);
  line-height: .95;
  letter-spacing: -.025em;
}
.hero-headline .line3 {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-top: .4rem;
}

.hero-sub {
  margin: 2rem 0 2.75rem;
  opacity: 0;
  animation: hero-up .8s cubic-bezier(.23,1,.32,1) .5s forwards;
}
.hero-sub p {
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.75;
  max-width: 440px;
}
.hero-sub strong { color: var(--fire-hi); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.25rem, 3vh, 3rem);
  opacity: 0;
  animation: hero-up .8s cubic-bezier(.23,1,.32,1) .65s forwards;
}

.hero-divider {
  height: 1px;
  background: rgba(245,238,228,.08);
  margin-top: auto;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn .8s ease .8s forwards;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: clamp(1.5rem, 3vh, 3rem);
  opacity: 0;
  animation: hero-up .8s cubic-bezier(.23,1,.32,1) .85s forwards;
}
.h-stat-val {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .3rem;
}
.h-stat-lbl {
  font-size: .78rem;
  color: rgba(245,238,228,0.62);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Right: portrait */
.hero-portrait-col {
  position: absolute;
  right: 5vw;
  top: 80px;
  bottom: 0;
  width: 46%;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-portrait-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(255,87,34,.32) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 3;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: .7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1; transform: translateX(-50%) scale(1.06); }
}
.hero-portrait-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 0 80px rgba(255,87,34,.4));
  opacity: 0;
  animation: fadeIn .9s ease .5s forwards;
}

/* Book-now floating badge */
.hero-badge-float {
  position: absolute;
  bottom: 6%;
  right: 4%;
  z-index: 20;
  background: rgba(15,13,10,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,87,34,.3);
  border-radius: 14px;
  padding: .85rem 1.2rem;
  animation: fadeIn .8s ease 1.2s forwards;
  opacity: 0;
}
.badge-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--fire);
  animation: dot-pulse 2s infinite;
  vertical-align: middle;
  margin-right: .45rem;
}
.hero-badge-float span {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(245,238,228,.75);
}

.hero-copy .hero-headline,
.hero-copy .hero-sub,
.hero-copy .hero-actions,
.hero-copy .hero-stats {
  transform: translateY(35px);
}

/* ═══════════════════════════════════════════
   STATS COUNTERS — DARK
═══════════════════════════════════════════ */
#stats {
  background: var(--dark-1);
  padding: 6rem 5vw;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 0%, rgba(255,87,34,.07) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-cell {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.015);
  transition: background .35s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,87,34,.06); }
.stat-num {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .7rem;
}
.stat-lbl {
  font-size: .72rem;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION — CREAM
═══════════════════════════════════════════ */
#problem {
  background: var(--cream-1);
  padding: 7rem 5vw;
  overflow: hidden;
  position: relative;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.problem-text .eyebrow { color: var(--fire); }
.problem-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--text-dark);
  margin: .8rem 0 1.5rem;
}
.problem-text p {
  font-size: .975rem;
  color: var(--muted-dark);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.pain-list {
  margin: 1.5rem 0 2.25rem;
  list-style: none;
  border-top: 1px solid rgba(26,21,16,.07);
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(26,21,16,.07);
  font-size: .925rem;
  color: rgba(26,21,16,.65);
}
.pain-x {
  color: var(--ember);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-photo { position: relative; }
.problem-photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(26,21,16,.18);
}
.problem-photo-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.problem-photo::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 70px; height: 70px;
  border-top: 2.5px solid var(--fire);
  border-left: 2.5px solid var(--fire);
  border-radius: 4px;
  z-index: 2;
}
.problem-photo::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 70px; height: 70px;
  border-bottom: 2.5px solid var(--fire);
  border-right: 2.5px solid var(--fire);
  border-radius: 4px;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   SERVICES BENTO — DARK
═══════════════════════════════════════════ */
#services {
  background: var(--dark-2);
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
#services::after {
  content: 'HOT';
  position: absolute;
  bottom: -12%;
  right: -4%;
  font-family: 'Jost', sans-serif;
  font-size: 28vw;
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,87,34,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.services-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-light);
  margin: .8rem 0 1rem;
}
.services-header p {
  font-size: .95rem;
  color: var(--muted-light);
  line-height: 1.75;
}
/* Hero numeral "4" beside the services heading */
.services-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: left;
}
.services-num {
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .services-heading { gap: 1rem; }
  .services-num { font-size: clamp(3rem, 16vw, 4.5rem); }
}
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bento-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s cubic-bezier(.23,1,.32,1), background .4s cubic-bezier(.23,1,.32,1), border-color .4s cubic-bezier(.23,1,.32,1);
  cursor: pointer;
}
.bento-card:hover {
  background: rgba(255,87,34,.07);
  border-color: rgba(255,87,34,.3);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(255,87,34,.12);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at top right, rgba(255,87,34,.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }

/* Service cards: push CTA button to bottom */
.bento-card:not(.accent) .btn { margin-top: auto; }

/* Featured card (Keynote) — fire border glow */
.bento-featured {
  border-color: rgba(255,87,34,.45);
  box-shadow: 0 0 0 1px rgba(255,87,34,.18), 0 8px 40px rgba(255,87,34,.18);
}
.bento-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.bento-featured:hover {
  box-shadow: 0 0 0 1px rgba(255,87,34,.35), 0 24px 64px rgba(255,87,34,.28);
}
.bento-featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: .28rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Accent stat cards — second row */
.bento-card.accent {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
  border-top: 2px solid rgba(255,87,34,.35);
  gap: .5rem;
}
.accent-icon {
  width: 28px;
  height: 28px;
  color: var(--fire);
  opacity: .6;
  margin-bottom: .25rem;
  flex-shrink: 0;
}
.accent-cta { border-top-color: var(--fire); }

.bento-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--fire);
  border: 1px solid rgba(255,87,34,.3);
  padding: .22rem .7rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.bento-title-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}
.bento-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,87,34,.1);
}
.bento-icon img { width: 100%; height: 100%; object-fit: contain; }
.bento-card h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.2;
}
.bento-card > p {
  font-size: .875rem;
  color: var(--muted-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.bento-feats {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.bento-feats li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .82rem;
  color: var(--muted-light);
}
.bento-feats li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--fire);
  flex-shrink: 0;
}
.big-num {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.big-lbl {
  font-size: .72rem;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PROCESS — CREAM
═══════════════════════════════════════════ */
#process {
  background: var(--cream-2);
  padding: 7rem 5vw;
}
.process-header {
  max-width: 600px;
  margin: 0 auto 5rem;
  text-align: center;
}
.process-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin: .8rem 0 1rem;
}
.process-sub {
  font-size: .9rem;
  color: var(--muted-dark);
  line-height: 1.7;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.step-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: var(--fire);
  opacity: .45;
  flex-shrink: 0;
}
.step-arrow svg { width: 28px; height: 28px; }
.step-arrow span {
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--fire);
}
.step {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s ease;
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(255,87,34,.14), 0 4px 12px rgba(0,0,0,.06);
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.step:hover::before { transform: scaleX(1); }
.step::after {
  content: attr(data-n);
  position: absolute;
  right: .5rem; bottom: -1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 6.5rem;
  font-weight: 900;
  color: var(--fire);
  opacity: .05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--fire);
  margin-bottom: 1.1rem;
  opacity: .75;
}
.step-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(255,87,34,.3);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover .step-icon {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 30px rgba(255,87,34,.45);
}
.step-icon svg { width: 26px; height: 26px; }
.step h3 {
  font-size: 1.06rem;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .65rem;
  line-height: 1.3;
}
.step p { font-size: .86rem; color: var(--muted-dark); line-height: 1.75; }

/* ═══════════════════════════════════════════
   PULL QUOTE SECTION — INDEX
═══════════════════════════════════════════ */
#pull-quote {
  background: var(--dark-0);
  padding: 9rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#pull-quote::before {
  content: '"';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 50vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,87,34,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION — INDEX
═══════════════════════════════════════════ */
#testimonials {
  background: var(--cream-1);
  padding: 7rem 5vw;
}

/* ═══════════════════════════════════════════
   GALLERY — DARK
═══════════════════════════════════════════ */
#gallery {
  background: var(--dark-1);
  padding: 7rem 0;
}
.gallery-header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 0 5vw;
}
.gallery-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--text-light);
  margin: .8rem 0 .9rem;
}
.gallery-sub {
  font-size: .88rem;
  color: var(--muted-light);
  font-weight: 300;
  letter-spacing: .02em;
}

/* ─── 5-photo homepage strip ─────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  height: clamp(220px, 26vw, 360px);
  gap: 4px;
}

/* Strip footer — View all photos row */
.photo-strip-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.75rem 5vw;
  background: var(--dark-1);
}
.photo-strip-footer a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--fire);
  text-decoration: none;
  letter-spacing: .06em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s ease;
}
.photo-strip-footer a:hover { gap: .65rem; }
.photo-strip-footer span {
  font-size: .75rem;
  color: var(--muted-light);
}

/* ═══════════════════════════════════════════
   ABOUT — CREAM
═══════════════════════════════════════════ */
#about {
  background: var(--cream-1);
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
#about::after {
  content: 'REENA';
  position: absolute;
  bottom: -8%;
  right: -3%;
  font-family: 'Jost', sans-serif;
  font-size: 20vw;
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(26,21,16,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-portrait { position: relative; }
.about-portrait img {
  width: 100%;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: 0 24px 80px rgba(26,21,16,.16);
  position: relative;
  z-index: 1;
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 20px -18px -18px 18px;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  border-radius: var(--r-xl);
  opacity: .18;
  z-index: 0;
}
.about-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin: .8rem 0 1.75rem;
}
.about-text p {
  font-size: .975rem;
  color: var(--muted-dark);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about-creds {
  margin: 1.75rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.cred {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--cream-2);
  border-left: 3px solid var(--fire);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .7rem 1rem;
  font-size: .865rem;
  color: rgba(26,21,16,.72);
}
.cred-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--fire);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BOOKING — HOMEPAGE (cream-2 bg)
═══════════════════════════════════════════ */
#booking {
  background: var(--cream-2);
  padding: 7rem 5vw;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — INDEX
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  #hero {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 3rem;
    min-height: auto;
  }
  .hero-copy {
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding-right: 0;
    padding-bottom: 2rem;
  }
  .hero-sub p { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge-float { display: none; }
  .hero-portrait-col {
    position: relative;
    right: auto; top: auto; bottom: auto;
    width: 100%;
    height: 70vw;
    max-height: 440px;
    padding-top: 0;
  }
  .hero-portrait-img { object-position: top center; }
  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
  .problem-photo { max-width: 480px; margin: 0 auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step-arrow { padding: .25rem 0; transform: rotate(90deg); }
  .step-arrow span { display: none; }
  /* Strip: 3 photos on tablet, hide last 2 */
  .photo-strip { grid-template-columns: 2fr 1fr 1fr; height: clamp(180px, 30vw, 260px); }
  .photo-strip .gi:nth-child(4),
  .photo-strip .gi:nth-child(5) { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait { max-width: 400px; margin: 0 auto; overflow: hidden; }
  .about-portrait::before { inset: 14px -10px -10px 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,.06); }
}

/* ═══════════════════════════════════════════
   TOUCH DEVICE — DISABLE HOVER TRANSFORMS
═══════════════════════════════════════════ */
@media (hover: none) {
  .bento-card:hover {
    transform: none;
    background: rgba(255,255,255,.025);
    border-color: rgba(255,255,255,.07);
    box-shadow: none;
  }
  .bento-card:hover::before { opacity: 0; }
  .step:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  }
  .step:hover::before { transform: scaleX(0); }
  .step:hover .step-icon { transform: none; box-shadow: 0 6px 20px rgba(255,87,34,.3); }
  .gi:hover img { transform: none; }
  .gi:hover::after { opacity: 0; }
  .gi:hover .gi-caption { opacity: 0; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  #hero { padding-top: 80px; padding-bottom: 2.5rem; }
  /* Strip: 2 photos on small mobile */
  .photo-strip { grid-template-columns: 1.5fr 1fr; height: 200px; }
  .photo-strip .gi:nth-child(3) { display: none; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-cell { padding: 2rem 1rem; }
  .stat-num { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-headline .line1,
  .hero-headline .line2 { font-size: 2.8rem; }
}

/* ═══════════════════════════════════════════
   STORIES TEASER — HOMEPAGE
═══════════════════════════════════════════ */
#stories-teaser {
  background: var(--dark-2);
  padding: 6rem 5vw;
}

.st-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.st-copy .eyebrow { display: block; margin-bottom: .875rem; }
.st-copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.1; margin-bottom: .875rem; }
.st-copy p  { color: var(--muted-light); line-height: 1.65; margin-bottom: 1.75rem; }
.st-ctas    { display: flex; gap: .875rem; flex-wrap: wrap; }

.st-cards { display: flex; flex-direction: column; gap: .875rem; }

.st-card {
  background: var(--dark-1);
  border-radius: var(--r-md);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 3px solid transparent;
  transition: transform .25s;
}
.st-card:hover { transform: translateX(4px); }
.st-card.hot  { border-left-color: var(--fire); }
.st-card.cold { border-left-color: var(--cold); }

.st-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: .55rem;
  padding: .18rem .55rem;
  border-radius: 10px;
}
.st-card.hot  .st-badge { background: rgba(255,87,34,.18); color: #ff7043; }
.st-card.cold .st-badge { background: rgba(120,144,156,.18); color: var(--cold-light); }

.st-card p    { color: var(--text-light); line-height: 1.55; font-style: italic; font-size: .9rem; margin-bottom: .55rem; }
.st-role      { font-size: .78rem; color: var(--muted-light); }

/* Paired "same person, two temperatures" card */
.st-card.st-paired { border-left-color: var(--gold); display: flex; flex-direction: column; gap: .75rem; }
.st-paired-header {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
  letter-spacing: -.01em;
}
.st-moment { padding-left: .85rem; border-left: 2px solid transparent; }
.st-moment.hot  { border-left-color: rgba(255,87,34,.5); }
.st-moment.cold { border-left-color: rgba(120,144,156,.5); }
.st-moment .st-badge { margin-bottom: .4rem; }
.st-moment.hot  .st-badge { background: rgba(255,87,34,.18); color: #ff7043; }
.st-moment.cold .st-badge { background: rgba(120,144,156,.18); color: var(--cold-light); }
.st-paired .st-moment p { margin: 0; }

@media (max-width: 768px) {
  .st-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ════════════════════════════════════════════════
   ANIMATION #4 — COLD-TO-HOT PAIN LIST REVEAL
   Each .pain-item slides in from the left (cold side)
   and its ✕ mark transitions from cold blue → ember
════════════════════════════════════════════════ */
.pain-item .pain-x {
  color: var(--cold);
  transition: color .9s ease .45s;
}
.pain-item.in .pain-x {
  color: var(--ember);
}
/* Override the base .reveal translateY — pain items slide from left */
.pain-item.reveal {
  transform: translateX(-18px);
}
.pain-item.reveal.in {
  transform: translateX(0);
}

/* ════════════════════════════════════════════════
   ANIMATION #6 — BOOKING TEMP DIAL (homepage)
════════════════════════════════════════════════ */
.booking-temp-dial {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.booking-temp-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--fire-hi);
  margin-left: .25rem;
}
.booking-temp-dial .td-track { width: 100px; }


/* ═══════════════════════════════════════════════════════════════
   LATEST FROM LINKEDIN
═══════════════════════════════════════════════════════════════ */
#linkedin {
  background: var(--dark-1);
  padding: clamp(4rem, 8vw, 7rem) 5vw;
}
#linkedin .li-inner { max-width: 1200px; margin: 0 auto; }
#linkedin .li-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
#linkedin .li-head .eyebrow { display: block; margin-bottom: 1rem; }
#linkedin .li-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}
#linkedin .li-head p { color: var(--muted-light); font-size: 1.05rem; }

.li-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.li-grid.li-grid-single { max-width: 660px; margin: 0 auto; grid-template-columns: 1fr; }

.li-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-0);
  color: var(--text-dark);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid rgba(255, 87, 34, .08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s ease;
}
.li-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(0, 0, 0, .36); }

.li-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.li-badge { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .8rem; color: #0A66C2; }
.li-badge svg { width: 18px; height: 18px; }
.li-card-top time { font-size: .78rem; color: var(--muted-dark); font-weight: 500; }

.li-media {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
  background: var(--dark-1);
}
.li-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.li-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 87, 34, .92);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  transition: transform .2s ease, background .2s ease;
}
.li-play svg { width: 24px; height: 24px; margin-left: 3px; }
.li-media:hover .li-play { transform: scale(1.08); background: var(--fire); }

.li-headline {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: .85rem;
}

.li-body {
  color: rgba(26, 21, 16, .78);
  font-size: .96rem;
  line-height: 1.6;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.li-body p { margin: 0 0 .7rem; }
.li-body p:last-child { margin-bottom: 0; }

.li-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0 .25rem; }
.li-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--fire);
  background: rgba(255, 87, 34, .08);
  padding: .25rem .6rem;
  border-radius: 999px;
}

.li-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 21, 16, .08);
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.li-engage { display: flex; gap: 1.25rem; }
.li-stat {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted-dark);
}
.li-stat svg { width: 15px; height: 15px; color: var(--fire); }

.li-link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--fire);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s ease, color .2s ease;
}
.li-link:hover { color: var(--ember); gap: .6rem; }

.li-followcta { text-align: center; margin-top: 3rem; }

@media (max-width: 560px) {
  .li-card { padding: 1.4rem; }
}
