/* ============================================================
   THE BOWLING LAB v2 — style.css
   Maroon #6B1A2A | Deep #4A0F1C | Blue #A8C8E0 | Cream #F5F0E8
   Display: Barlow Condensed | Body: Inter | Mono: DM Mono
   ============================================================ */

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

:root {
  --maroon:  #6B1A2A;
  --deep:    #4A0F1C;
  --darkest: #2A080F;
  --blue:    #A8C8E0;
  --cream:   #F5F0E8;
  --off:     #EDE6DB;
  --grey:    #2A2A2A;
  --mid:     #777777;
  --light:   #E0D8CC;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max:  1100px;
  --pad:  clamp(1.25rem, 5vw, 2.5rem);
  --sec:  clamp(4rem, 9vw, 7rem);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--grey); background: var(--cream); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ---- TYPE ---- */
.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--maroon); margin-bottom: 1rem;
}
.section-label.light { color: var(--blue); }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--grey); line-height: 1.1;
  text-transform: uppercase; margin-bottom: 1.5rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; font-family: var(--font-body); font-size: 0.875rem;
  font-weight: 600; color: var(--deep); background: var(--blue);
  padding: 0.8rem 2rem; border-radius: 2px; border: none; cursor: pointer;
  transition: opacity 0.15s, transform 0.1s; letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block; font-size: 0.875rem; font-weight: 500;
  color: rgba(245,240,232,0.75); border-bottom: 1px solid rgba(245,240,232,0.3);
  padding-bottom: 2px; transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--cream); }

.btn-outline {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--maroon); border: 1.5px solid var(--maroon);
  padding: 0.65rem 1.5rem; border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--maroon); color: var(--cream); }

.btn-outline-dark {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--cream); border: 1.5px solid rgba(245,240,232,0.3);
  padding: 0.65rem 1.5rem; border-radius: 2px;
  transition: border-color 0.15s;
}
.btn-outline-dark:hover { border-color: var(--cream); }

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: var(--maroon); padding: 0.5rem var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(245,240,232,0.85);
}
.urgency-bar a {
  color: var(--blue); font-weight: 600; white-space: nowrap;
  transition: opacity 0.15s;
}
.urgency-bar a:hover { opacity: 0.75; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--deep);
  border-bottom: 1px solid rgba(168,200,224,0.1);
}

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-the  { font-family: var(--font-display); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.28em; color: var(--blue); }
.logo-main { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.08em; color: var(--cream); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.nav-cta) {
  font-size: 0.82rem; font-weight: 500; color: rgba(245,240,232,0.6);
  transition: color 0.15s;
}
.nav-links a:not(.nav-cta):hover { color: var(--cream); }

.nav-cta {
  font-size: 0.8rem; font-weight: 600; color: var(--deep);
  background: var(--blue); padding: 0.45rem 1.1rem; border-radius: 2px;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 1px; transition: opacity 0.2s; }

.nav-mobile {
  display: none; flex-direction: column; background: var(--deep);
  border-top: 1px solid rgba(168,200,224,0.1); padding: 1rem var(--pad);
  gap: 0.75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.95rem; color: rgba(245,240,232,0.7); padding: 0.4rem 0; }
.nav-mobile .mobile-cta { color: var(--blue); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--deep);
}

/* Graphic hero background */
.hero-graphic {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

/* Giant faded FBC letterforms */
.hero-fbc {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(180px, 28vw, 340px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: rgba(107,26,42,0.35); user-select: none;
  text-transform: uppercase;
}

/* Diagonal slash accent */
.hero-slash {
  position: absolute; top: -10%; right: 30%;
  width: 2px; height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(168,200,224,0.12), transparent);
  transform: rotate(12deg);
}

/* Stumps */
.hero-stumps {
  position: absolute; right: 4%; bottom: 0;
  width: clamp(100px, 16vw, 220px); height: clamp(200px, 44vh, 440px);
  pointer-events: none; z-index: 1;
}
.stump {
  position: absolute; bottom: 0; width: 9%; height: 86%;
  background: rgba(107,26,42,0.6); border-radius: 2px 2px 0 0;
}
.s1 { left: 18%; } .s2 { left: 45.5%; } .s3 { left: 73%; }

.stump-text {
  position: absolute; top: 12%; left: 50%; transform: translateX(-50%);
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--font-display); font-size: clamp(5px, 0.9vw, 10px);
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,240,232,0.55); white-space: nowrap; line-height: 1;
  pointer-events: none; user-select: none;
}

.bail {
  position: absolute; height: 3.5%; width: 36%; border-radius: 2px;
  background: var(--blue); opacity: 0.85;
}
.b1 { top: 13%; left: 17%; transform-origin: left center; animation: bail1 4s ease-out infinite 1s; }
.b2 { top: 11%; left: 44%; transform-origin: right center; animation: bail2 4s ease-out infinite 1s; }

@keyframes bail1 {
  0%,25%   { transform: rotate(0) translate(0,0); opacity: 0.85; }
  55%      { transform: rotate(-38deg) translate(-14px,-22px); opacity: 0.6; }
  80%,100% { transform: rotate(-38deg) translate(-14px,-22px); opacity: 0; }
}
@keyframes bail2 {
  0%,25%   { transform: rotate(0) translate(0,0); opacity: 0.85; }
  55%      { transform: rotate(30deg) translate(16px,-20px); opacity: 0.6; }
  80%,100% { transform: rotate(30deg) translate(16px,-20px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .bail { animation: none; } }

.hero-inner {
  position: relative; z-index: 2;
  padding-top: calc(var(--sec) * 0.8);
  padding-bottom: calc(var(--sec) * 0.8);
}

.eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem;
}

.hero-h1 {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11vw, 8.5rem);
  font-weight: 800; line-height: 0.93;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.h1-line { color: var(--cream); }
.h1-accent { color: var(--blue); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(245,240,232,0.65); line-height: 1.7;
  max-width: 40ch; margin-bottom: 2.25rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: var(--pad);
  display: flex; align-items: center; gap: 0.75rem; z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,240,232,0.35); writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.35), transparent);
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar { background: var(--maroon); }
.proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.proof-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 2.5rem; gap: 0.25rem;
}
.proof-num {
  font-family: var(--font-mono); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500; color: var(--cream); line-height: 1;
}
.proof-label {
  font-size: 0.7rem; font-weight: 500; color: rgba(245,240,232,0.55);
  text-transform: uppercase; letter-spacing: 0.08em; text-align: center;
}
.proof-div { width: 1px; height: 40px; background: rgba(245,240,232,0.15); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: var(--sec) 0; background: var(--cream); }

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

.how-body {
  font-size: 1rem; line-height: 1.8; color: #444;
  margin-bottom: 1rem;
}
.how-body:last-child { margin-bottom: 0; }
.how-origin { font-style: italic; color: var(--mid); border-left: 2px solid var(--blue); padding-left: 1rem; }

.included-list { display: flex; flex-direction: column; gap: 1.25rem; }
.included-item { display: flex; gap: 1rem; align-items: flex-start; }

.inc-num {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  color: var(--blue); flex-shrink: 0; margin-top: 3px;
  width: 20px;
}

.included-item h3 {
  font-size: 0.875rem; font-weight: 600; color: var(--grey); margin-bottom: 0.2rem;
}
.included-item p { font-size: 0.85rem; line-height: 1.6; color: var(--mid); }

/* ============================================================
   WHO
   ============================================================ */
.who { padding: var(--sec) 0; background: var(--deep); position: relative; overflow: hidden; }

.slash-bg {
  position: absolute; top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: rgba(107,26,42,0.25);
  transform: skewX(-12deg);
  pointer-events: none;
}

.who-inner { position: relative; z-index: 1; }

.who-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: var(--cream);
  text-transform: uppercase; line-height: 1.05;
  max-width: 20ch; margin-bottom: 2rem;
}

.who-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.tag {
  font-size: 0.8rem; font-weight: 500; color: var(--deep);
  background: var(--blue); padding: 0.4rem 1rem; border-radius: 2px;
}

.who-note { font-size: 0.9rem; color: rgba(245,240,232,0.5); line-height: 1.7; max-width: 46ch; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: var(--sec) 0; background: var(--cream); }
.pricing .section-h2 { margin-bottom: 2.5rem; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--light);
  border: 1px solid var(--light); border-radius: 4px; overflow: hidden;
  margin-bottom: 1.5rem;
}

.price-card {
  background: white; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0;
}
.price-card--featured { background: var(--maroon); }

.price-badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 0.75rem;
}
.price-badge--light { color: rgba(245,240,232,0.6); }

.price-tier {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mid); margin-bottom: 0.6rem;
}
.price-card--featured .price-tier { color: rgba(245,240,232,0.55); }
.price-card--mid .price-tier { color: var(--mid); }

.price-amt {
  font-family: var(--font-mono); font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500; color: var(--maroon); line-height: 1;
  margin-bottom: 0.85rem;
}
.price-card--featured .price-amt { color: var(--cream); }

.price-desc {
  font-size: 0.83rem; line-height: 1.65; color: var(--mid);
  flex-grow: 1; margin-bottom: 1.5rem;
}
.price-card--featured .price-desc { color: rgba(245,240,232,0.6); }

.price-card .btn-outline { align-self: flex-start; }
.price-card--featured .btn-primary { margin-top: auto; }

.pricing-note { font-size: 0.82rem; color: var(--mid); }

/* ============================================================
   SESSION STEPS
   ============================================================ */
.session-steps { padding: var(--sec) 0; background: var(--off); }
.session-steps .section-h2 { margin-bottom: 3rem; }

.steps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
}

.step {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem;
  padding: 0 1.5rem;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  color: var(--blue); letter-spacing: 0.08em;
}

.step-icon {
  width: 48px; height: 48px; color: var(--maroon);
}
.step-icon svg { width: 100%; height: 100%; }

.step h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--grey); text-transform: uppercase; line-height: 1.1;
}

.step p {
  font-size: 0.875rem; line-height: 1.7; color: var(--mid);
}

.step-arrow {
  font-size: 1.5rem; color: var(--blue); opacity: 0.4;
  align-self: center; padding: 0 0.5rem; margin-top: 2rem;
}

/* ============================================================
   FLYER DOWNLOAD
   ============================================================ */
.flyer-download {
  display: flex; align-items: center; gap: 1.25rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}

.btn-download {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--maroon);
  border: 1.5px solid var(--maroon); padding: 0.6rem 1.25rem;
  border-radius: 2px; transition: background 0.15s, color 0.15s;
}
.btn-download:hover { background: var(--maroon); color: var(--cream); }
.btn-download svg { flex-shrink: 0; transition: transform 0.2s; }
.btn-download:hover svg { transform: translateY(2px); }

.flyer-hint { font-size: 0.78rem; color: var(--mid); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--sec) 0; background: var(--off); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: white; border-radius: 3px;
  padding: 1.75rem; display: flex; flex-direction: column;
  border-top: 3px solid var(--maroon);
}

.testi-quote {
  font-size: 0.9rem; line-height: 1.75; color: var(--grey);
  flex-grow: 1; margin-bottom: 1.25rem;
  font-style: italic;
}

.testi-attr { display: flex; flex-direction: column; gap: 0.15rem; }
.testi-name { font-size: 0.8rem; font-weight: 600; color: var(--maroon); }
.testi-club { font-size: 0.75rem; color: var(--mid); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--sec) 0; background: var(--cream); }

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

.portrait-frame {
  position: relative; border-radius: 6px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(74,15,28,0.18);
}
.portrait-img {
  width: 100%; height: auto; display: block;
}
.portrait-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--maroon); color: var(--cream);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 1rem; text-align: center;
}

.about-body { font-size: 1rem; line-height: 1.8; color: #444; margin-bottom: 1.75rem; }

.creds { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.cred { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; line-height: 1.5; color: var(--grey); }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 0.45rem; }

.about-quote {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600; color: var(--maroon); line-height: 1.4;
  border-left: 3px solid var(--blue); padding-left: 1.25rem;
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { padding: var(--sec) 0; background: var(--deep); }

.insta-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.insta-handle {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--cream); transition: opacity 0.15s;
}
.insta-handle:hover { opacity: 0.75; }

.curator-wrap { width: 100%; }
.curator-wrap .crt-feed { width: 100% !important; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--sec) 0; background: var(--darkest); }

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

.contact-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--cream);
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 1.25rem;
}

.contact-sub {
  font-size: 0.95rem; color: rgba(245,240,232,0.55);
  line-height: 1.75; margin-bottom: 2rem;
}

.contact-links { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.contact-links a {
  font-size: 0.9rem; color: var(--blue); font-weight: 500;
  transition: opacity 0.15s;
}
.contact-links a:hover { opacity: 0.75; }

.contact-urgency {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; color: rgba(245,240,232,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.urgency-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.3rem; }

.form-group label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(245,240,232,0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--cream); background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12); border-radius: 2px;
  padding: 0.7rem 0.9rem; outline: none;
  transition: border-color 0.15s; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group select option { background: var(--darkest); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-success { font-size: 0.875rem; color: var(--blue); min-height: 1.4em; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #150306; padding: 2.5rem 0; }

.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}

.footer-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.8rem; color: rgba(245,240,232,0.4);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(245,240,232,0.25); }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem; color: var(--blue); opacity: 0.6;
  transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 1; }


/* ============================================================
   MID PAGE CTA
   ============================================================ */
.mid-cta {
  background: var(--maroon);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.mid-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
}

.mid-cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--cream);
  text-transform: uppercase; line-height: 1.1;
  margin-bottom: 0.6rem;
}

.mid-cta-sub {
  font-size: 0.9rem; color: rgba(245,240,232,0.65);
  line-height: 1.65; max-width: 44ch;
}

.mid-cta-actions {
  display: flex; flex-direction: column; gap: 0.75rem;
  flex-shrink: 0;
}

.btn-ghost-dark {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: rgba(245,240,232,0.7);
  border-bottom: 1px solid rgba(245,240,232,0.3);
  padding-bottom: 2px; text-align: center;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost-dark:hover { color: var(--cream); border-color: var(--cream); }

@media (max-width: 700px) {
  .mid-cta-inner { flex-direction: column; align-items: flex-start; }
  .mid-cta-actions { flex-direction: row; flex-wrap: wrap; }
}


/* ============================================================
   HERO BALL ANIMATION
   ============================================================ */
.hero-ball {
  position: absolute;
  width: clamp(18px, 2.5vw, 28px);
  height: clamp(18px, 2.5vw, 28px);
  border-radius: 50%;
  background: #C0392B;
  border: 2px solid #922B21;
  box-shadow: inset -3px -2px 0 rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.hero-ball::after {
  content: '';
  position: absolute;
  top: 3px; left: 5px; right: 5px; bottom: 3px;
  border-top: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: rotate(-15deg);
}


/* Pricing contact block */
.pricing-contact {
  background: var(--white); border: 1px solid var(--light);
  border-radius: 4px; padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}

.pricing-contact-body {
  font-size: 1rem; line-height: 1.75; color: #444;
  max-width: 50ch;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step-arrow { display: none; }
  .step { padding: 0; }

  .how-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-grid { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 320px; aspect-ratio: 4/3; }

  .pricing-grid { grid-template-columns: 1fr; background: none; border: none; gap: 1rem; }
  .price-card { border: 1px solid var(--light); border-radius: 3px; }

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

  .proof-inner { gap: 0; }
  .proof-item { padding: 1.25rem 1.5rem; }
  .proof-div { display: none; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .form-row { grid-template-columns: 1fr; }

  .hero-stumps { opacity: 0.2; }
}

@media (max-width: 540px) {
  .hero-stumps { display: none; }
  .proof-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .proof-div { display: none; }
  .proof-item { border-bottom: 1px solid rgba(245,240,232,0.1); }
  .insta-header { flex-direction: column; align-items: flex-start; }
}
