/* ============================================================
   AMERICAN BHAU — styles.css
   ============================================================ */

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

:root {
  --accent:       #FFDE5A;
  --accent-hover: #F0CC30;
  --yellow:       #FFDE5A;
  --yellow-hover: #F0CC30;
  --black:        #0F0F0F;
  --dark:         #161616;
  --cream:        #FAFAF8;
  --white:        #FFFFFF;
  --muted:        #6B6B6B;
  --border:       #E8E7E2;
  --card-bg:      #F4F3EF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  30px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.25);
}
.btn-ghost:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.06);
}

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

.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ── NAV ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.nav.scrolled {
  background: rgba(15, 15, 15, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav.scrolled .nav-brand-name,
.nav.scrolled .nav-links a { color: var(--white); }
.nav.scrolled .btn-nav { background: var(--accent); color: var(--white); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.nav-brand-name strong { font-weight: 900; }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  opacity: 0.6;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  transition: all 0.18s ease;
  flex-shrink: 0;
}
.btn-nav:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  background: #0A0A0A;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,222,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn-dark {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.hero .btn-dark:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.hero .btn-ghost {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.hero .btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* Visual column */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.hero-portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-portrait {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Business collage */
.hero-collage-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.collage-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.biz-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.biz-card {
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.biz-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.biz-card--dark {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}

.biz-card--yellow {
  background: var(--accent);
  color: var(--black);
}

.biz-card--cream {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.1);
}

.biz-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}

.biz-card--wide .biz-icon {
  margin-bottom: 0;
  font-size: 20px;
}

.biz-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.biz-loc {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.6;
}

.hero-badge-float {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 10px 32px rgba(255,222,90,0.25);
  animation: float 3.2s ease-in-out infinite;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.badge-label {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.65;
  white-space: nowrap;
  display: block;
  margin-top: 2px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.hero-proof-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  width: 100%;
  max-width: 380px;
}

.proof-quote {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  margin-bottom: 10px;
}

.proof-attr {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
}

/* ── STATS BAR ────────────────────────────────────────────── */

.stats-bar {
  background: var(--black);
  padding: 30px 40px;
}

.stats-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stats-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.stats-list {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.stat-item {
  padding: 0 28px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

/* ── ABOUT ────────────────────────────────────────────────── */

.about {
  padding: 120px 40px;
  background: var(--cream);
}

.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: start;
}

.about-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 28px;
}

.about-pullquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  font-style: normal;
  position: relative;
  padding-left: 24px;
}

.about-pullquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.about-pullquote em {
  font-style: italic;
}

.about-body {
  padding-top: 52px;
}

.about-body p {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(0,0,0,0.65);
  margin-bottom: 22px;
}

.about-body p:last-child { margin-bottom: 0; }

.about-kicker {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  font-family: var(--font-display);
  line-height: 1.55 !important;
  font-style: italic;
}

/* ── SERVICES ─────────────────────────────────────────────── */

.services {
  padding: 120px 40px;
  background: var(--white);
}

.services-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-header .section-tag { margin-bottom: 14px; }

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 17px;
  color: var(--muted);
}

.services-header p a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.09);
}

.service-card--featured {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.service-card--featured .service-num { color: rgba(255,255,255,0.35); }
.service-card--featured h3         { color: var(--white); }
.service-card--featured p          { color: rgba(255,255,255,0.6); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.65); }
.service-card--featured .service-list li::before { color: var(--yellow); }
.service-card--featured .service-price { color: var(--yellow); }
.service-card--featured .service-footer { border-top-color: rgba(255,255,255,0.1); }

.service-badge-top {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.service-icon { font-size: 32px; line-height: 1; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-card > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.service-list li::before {
  content: '→';
  color: var(--black);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1.5px solid var(--border);
}

.service-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */

.testimonials {
  background: var(--dark);
  padding: 120px 40px;
}

.testimonials-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 64px;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.testimonials-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.4);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,214,0,0.22);
}

.t-quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.62;
  flex: 1;
}

.t-quote::before {
  content: '"';
  font-size: 22px;
  color: var(--yellow);
  font-style: normal;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 900;
  font-family: var(--font-display);
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.t-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.t-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

/* ── CTA SECTION ──────────────────────────────────────────── */

.cta-section {
  background: #0A0A0A;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: 'BHAU';
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content .section-tag { margin-bottom: 18px; color: var(--accent); background: rgba(255,222,90,0.1); }

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-content h2 em { font-style: italic; color: var(--accent); }

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.52);
  line-height: 1.72;
  margin-bottom: 44px;
  max-width: 560px;
}

.cta-subtext {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  margin-top: 16px;
  display: block;
  line-height: 1.5;
}

.cta-section .btn-dark {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.cta-section .btn-dark:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ── CONTACT ──────────────────────────────────────────────── */

.contact {
  padding: 120px 40px;
  background: var(--cream);
}

.contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: start;
}

.contact-left .section-tag { margin-bottom: 14px; }

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-left > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.65;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.contact-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.csp-avatars {
  display: flex;
}

.csp-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--cream);
  margin-left: -8px;
  flex-shrink: 0;
}

.csp-av:first-child { margin-left: 0; }

.contact-social-proof > span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  resize: vertical;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.3); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--black);
  background: var(--white);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 14px;
}

.btn-submit:disabled {
  background: #555;
  color: #ccc;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ── FOOTER ───────────────────────────────────────────────── */

.footer {
  background: var(--black);
  padding: 52px 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer-brand span {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-copy {
  width: 100%;
  font-size: 13px;
  color: rgba(255,255,255,0.18);
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.07s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.14s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: 0.07s; }
.testimonials-grid .testimonial-card:nth-child(5) { transition-delay: 0.14s; }
.testimonials-grid .testimonial-card:nth-child(6) { transition-delay: 0.21s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 48px; }
  .hero                { min-height: auto; padding: 120px 20px 64px; }
  .hero-visual         { order: -1; }
  .hero-portrait-wrap  { max-width: 220px; margin: 0 auto; }
  .hero-collage-wrap   { max-width: 100%; }
  .hero-badge-float    { left: -10px; bottom: 16px; padding: 10px 14px; }
  .badge-num           { font-size: 20px; }

  .about-inner         { grid-template-columns: 1fr; gap: 48px; }
  .about-body          { padding-top: 0; }
  .about               { padding: 80px 20px; }

  .services-grid       { grid-template-columns: 1fr; }
  .services            { padding: 80px 20px; }

  .testimonials-grid   { grid-template-columns: 1fr 1fr; }
  .testimonials        { padding: 80px 20px; }

  .contact-inner       { grid-template-columns: 1fr; gap: 48px; }
  .contact             { padding: 80px 20px; }
  .contact-form        { padding: 32px 24px; }
  .form-row            { grid-template-columns: 1fr; }

  .cta-section         { padding: 80px 20px; }
  .nav                 { padding: 0 20px; }
  .stats-bar           { padding: 24px 20px; }
}

@media (max-width: 640px) {
  .nav-links           { display: none; }
  .stats-list          { gap: 0; }
  .stat-item           { padding: 8px 16px; }
  .stat-divider        { display: none; }
  .stats-label         { width: 100%; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .footer              { padding: 40px 20px; }
  .footer-brand        { margin-right: 0; }
}

/* ── WIDGETS ─────────────────────────────────────────────────── */

.widgets-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Launcher buttons stack */
.widget-launchers {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.chat-bubble {
  display: flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.chat-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

.chat-bubble--qa {
  background: var(--black);
  color: var(--yellow);
}

.chat-bubble--proposal {
  background: var(--yellow);
  color: var(--black);
}

/* Panels */
.chat-panel {
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideIn 0.22s ease;
}

.chat-panel[hidden] {
  display: none;
}

@keyframes chatSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: var(--white);
  padding: 14px 16px 14px 18px;
  flex-shrink: 0;
}

.proposal-header {
  background: var(--yellow);
  color: var(--black);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.proposal-avatar {
  background: var(--black);
  color: var(--yellow);
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.chat-header-info strong { font-size: 14px; font-weight: 700; }
.chat-header-info span   { font-size: 11px; opacity: 0.6; }

.chat-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 6px;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.chat-close-btn:hover { opacity: 1; }

/* Progress bar (proposal only) */
.proposal-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 8px;
  border-bottom: 1.5px solid var(--border);
  flex-shrink: 0;
}

.proposal-progress-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.proposal-progress-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.proposal-progress-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.chat-msg {
  display: flex;
  max-width: 85%;
}

.chat-msg span {
  display: block;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-msg--bot  { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; }

.chat-msg--bot span {
  background: var(--card-bg);
  color: var(--black);
  border-bottom-left-radius: 4px;
}

.chat-msg--user span {
  background: var(--black);
  color: var(--yellow);
  border-bottom-right-radius: 4px;
}

/* Proposal user bubbles use yellow-on-black too but could differ */
.proposal-panel .chat-msg--user span {
  background: var(--dark);
  color: var(--yellow);
}

/* Typing indicator */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 18px 8px;
  flex-shrink: 0;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

/* Input row */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1.5px solid var(--border);
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--cream);
  outline: none;
  transition: border-color 0.15s;
}

.chat-input:focus    { border-color: var(--black); }
.chat-input:disabled { opacity: 0.5; cursor: not-allowed; }

.chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}

.chat-send:hover    { background: var(--dark); transform: scale(1.05); }
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.proposal-send {
  background: var(--yellow);
  color: var(--black);
}

.proposal-send:hover { background: var(--yellow-hover); }

/* Mobile */
@media (max-width: 480px) {
  .widgets-container { bottom: 16px; right: 16px; left: 16px; align-items: flex-end; }
  .chat-panel        { width: 100%; max-height: 72vh; }
}
