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

:root {
  --navy: #0c1b2e;
  --navy-mid: #152540;
  --navy-light: #1e3356;
  --gold: #e0a43a;
  --gold-light: #f3c45c;
  --gold-pale: #f5e6c8;
  --cream: #f6f1e8;
  --white: #ffffff;
  --text: #0c1b2e;
  --muted: #5a6a7e;
  --border: #e2ddd6;
  --radius: 10px;
  --radius-lg: 18px;
  --live: #3dcc7a;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

h1, .section-title, .footer-logo, .nav-logo-text, .chat-head h2 {
  font-optical-sizing: auto;
}

/* ============ NAVIGATION ============ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 100%;
  background: rgba(12, 27, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(200,151,58,0.35);
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-phone {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 8px 20px rgba(200,151,58,0.28);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* ============ HERO / LIVE DISPATCH ============ */

.hero {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 0 0;
  position: relative;
  overflow: hidden;
  background: #0a1628;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: cover;
  object-position: center;
}

.hero-stage {
  position: absolute;
  z-index: 2;
  inset: 88px 0 0 0;
  width: min(1100px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0 24px;
}

.hero-cta {
  appearance: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(200,151,58,0.35);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hero-cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.form-card {
  background: linear-gradient(180deg, rgba(18, 34, 58, 0.94) 0%, rgba(12, 27, 46, 0.90) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow:
    0 0 0 1px rgba(200,151,58,0.22),
    0 24px 80px rgba(0,0,0,0.45);
  position: relative;
}

.chat-card {
  padding: 18px 18px 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 18px;
}

.form-card-accent {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 999px 999px;
}

.chat-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding-top: 4px;
}

.chat-head-copy {
  flex: 1;
  min-width: 0;
}

.chat-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.chat-head h2 {
  margin-bottom: 2px;
  font-size: 1.35rem;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  color: var(--white);
}

.chat-sub {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
}

.chat-head-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 0 3px rgba(224,164,58,0.18);
}

/* Animate the SVG wrapper itself — reliable across Chrome/Safari/mobile */
.chat-head-mark .helper-svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #152540;
  transform-origin: 50% 70%;
  animation: helper-svg-breathe 3.2s ease-in-out infinite;
  will-change: transform;
}

.helper-svg .helper-mouth-open {
  opacity: 0;
}

.helper-svg .helper-headset-glow {
  opacity: 0;
}

/* Speech ticks — hidden until working */
.helper-speech-ticks {
  opacity: 0;
  pointer-events: none;
}

.helper-live-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  animation: helper-ring-pulse 2s ease-in-out infinite;
  will-change: transform, opacity;
}

/* Listening: stronger ring + scale-up attention on the SVG wrapper */
.chat-head-mark.is-listening .helper-live-ring {
  border-color: var(--gold-light);
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(224,164,58,0.32), 0 0 14px rgba(224,164,58,0.45);
  animation: helper-ring-pulse-strong 1s ease-in-out infinite;
}

.chat-head-mark.is-listening .helper-svg {
  animation: helper-svg-listen 0.4s ease forwards;
}

.chat-head-mark.is-listening .helper-svg .helper-headset-glow {
  opacity: 0.45;
  animation: helper-glow-pulse 1s ease-in-out infinite;
}

.chat-head-mark.is-listening .helper-svg .helper-mouth-open {
  opacity: 0 !important;
  animation: none !important;
}

.chat-head-mark.is-listening .helper-svg .helper-mouth-closed {
  opacity: 1 !important;
  animation: none !important;
}

/* Working/talking: unmistakable bob + mouth + speech ticks + bright screen */
.chat-head-mark.is-working .helper-svg {
  animation: helper-svg-talk 0.55s ease-in-out infinite;
}

.chat-head-mark.is-working .helper-svg .helper-mouth-closed {
  animation: helper-mouth-closed-talk 0.32s steps(1) infinite;
}

.chat-head-mark.is-working .helper-svg .helper-mouth-open {
  animation: helper-mouth-open-talk 0.32s steps(1) infinite;
}

.chat-head-mark.is-working .helper-speech-ticks {
  animation: helper-ticks-bob 0.7s ease-in-out infinite;
}

.chat-head-mark.is-working .helper-screen-lit {
  opacity: 1 !important;
}

.chat-head-mark.is-working .helper-live-ring {
  border-style: dashed;
  opacity: 0.95;
  animation: helper-ring-spin 2.2s linear infinite;
}

/* Wrapper-level keyframes (NOT nested SVG <g> transforms) */
@keyframes helper-svg-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes helper-svg-listen {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-2px) scale(1.08); }
}

@keyframes helper-svg-talk {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-2.5deg); }
  50% { transform: translateY(-1px) rotate(1.5deg); }
  75% { transform: translateY(-6px) rotate(-1.5deg); }
}

@keyframes helper-mouth-closed-talk {
  0%, 100% { opacity: 1; }
  35%, 65% { opacity: 0; }
}

@keyframes helper-mouth-open-talk {
  0%, 100% { opacity: 0; }
  35%, 65% { opacity: 1; }
}

@keyframes helper-glow-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.7; }
}

@keyframes helper-ring-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.07); }
}

@keyframes helper-ring-pulse-strong {
  0%, 100% { opacity: 0.75; transform: scale(1); box-shadow: 0 0 0 3px rgba(224,164,58,0.25); }
  50% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 0 7px rgba(224,164,58,0.4); }
}

@keyframes helper-ring-spin {
  from { transform: rotate(0deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1.02); }
}

@keyframes helper-ticks-bob {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.chat-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: rgba(61, 204, 122, 0.12);
  border: 1px solid rgba(61, 204, 122, 0.28);
  flex-shrink: 0;
}

.chat-status.is-closed {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(61, 204, 122, 0.55);
  animation: statusPulse 2s ease infinite;
  flex-shrink: 0;
}

.chat-status.is-closed .status-dot {
  background: #8a93a3;
  box-shadow: none;
  animation: none;
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 204, 122, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(61, 204, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 204, 122, 0); }
}

.status-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--live);
  white-space: nowrap;
}

.chat-status.is-closed .status-label {
  color: rgba(255,255,255,0.7);
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.chat-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 400;
}

.chat-bubble.bot {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  align-self: flex-start;
}

.chat-bubble.user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
}

.chat-bubble.busy { opacity: 0.7; font-style: italic; }

.chat-compose {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.chat-compose #chat-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--cream);
  outline: none;
  color: var(--navy);
}

.chat-compose #chat-input:focus { border-color: var(--gold); background: #fff; }

.chat-compose button {
  border: none;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-family: inherit;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  box-shadow: 0 8px 20px rgba(200,151,58,0.28);
}

.chat-compose button:hover {
  background: var(--gold-light);
}

.chat-compose button:disabled { opacity: 0.55; cursor: default; }

.chat-compose {
  align-items: center;
}

.chat-cam {
  position: relative;
  min-width: 52px;
  height: 44px;
  padding: 0 10px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(224,164,58,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  user-select: none;
}

.chat-cam input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.chat-cam span {
  pointer-events: none;
  white-space: nowrap;
}

.chat-cam:hover,
.chat-cam:focus-within {
  background: rgba(224,164,58,0.16);
  border-color: var(--gold);
  color: var(--gold);
}

.chat-photo-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.chat-compose #chat-input {
  min-height: 44px;
}

.chat-compose button[type="submit"] {
  min-height: 44px;
}

.photo-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 6px 10px 6px 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(224,164,58,0.28);
  border-radius: 999px;
  color: var(--gold-pale);
  font-size: 0.8rem;
}

.photo-chip[hidden] { display: none !important; }

.photo-chip img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.photo-chip span {
  flex: 1;
  min-width: 0;
}

.photo-chip .photo-clear {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  box-shadow: none;
  font-weight: 500;
}

.chat-bubble.user {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bubble-thumb {
  width: 148px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.chat-card {
  overflow: hidden;
}

.board-stamp {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  background: rgba(8, 15, 26, 0.32);
}

.board-stamp.show {
  animation: stampWash 0.35s ease forwards;
}

.board-stamp.fade {
  animation: stampOut 0.55s ease forwards;
}

.board-stamp-inner {
  border: 4px solid var(--gold);
  color: var(--gold);
  background: rgba(12, 27, 46, 0.9);
  padding: 18px 26px;
  transform: rotate(-8deg);
  text-align: center;
  box-shadow:
    0 0 0 4px rgba(224,164,58,0.22),
    0 16px 40px rgba(0,0,0,0.45);
  border-radius: 6px;
}

.board-stamp.show .board-stamp-inner {
  animation: stampSlam 0.48s cubic-bezier(0.15, 1.55, 0.28, 1) both;
}

.board-stamp-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.board-stamp-job {
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 8px 0 6px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.board-stamp-job:empty { display: none; }

.board-stamp-line {
  font-size: 0.78rem;
  color: var(--gold-pale);
  max-width: 260px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.4;
}

@keyframes stampWash {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes stampSlam {
  0% { transform: scale(2.1) rotate(-18deg); opacity: 0; filter: blur(2px); }
  55% { transform: scale(0.92) rotate(-6deg); opacity: 1; filter: blur(0); }
  78% { transform: scale(1.06) rotate(-9deg); }
  100% { transform: scale(1) rotate(-8deg); }
}

@keyframes stampOut {
  to { opacity: 0; }
}


/* ============ FLOATING CHAT WIDGET ============ */

#chat-widget-root {
  position: relative;
  z-index: 1200;
}

#chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1210;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(224,164,58,0.35),
    0 12px 32px rgba(0,0,0,0.35),
    0 8px 20px rgba(200,151,58,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

#chat-launcher:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(224,164,58,0.45),
    0 16px 36px rgba(0,0,0,0.4),
    0 10px 24px rgba(200,151,58,0.4);
}

#chat-launcher:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

#chat-launcher svg {
  width: 28px;
  height: 28px;
  display: block;
}

#chat-launcher .launcher-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(224,164,58,0.55);
  animation: launcherPulse 2.2s ease-out infinite;
  pointer-events: none;
}

#chat-launcher .launcher-dot {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--live);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 0 rgba(61,204,122,0.5);
}

@keyframes launcherPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

#chat-widget {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 1220;
  width: min(400px, calc(100vw - 28px));
  height: min(640px, calc(100vh - 120px));
  max-height: calc(100vh - 120px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

html.chat-open #chat-widget {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

html.chat-open #chat-launcher {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.85);
}

html.chat-open body {
  /* desktop: no lock; mobile handled below */
}

#chat-widget .form-card.chat-card {
  height: 100%;
  box-shadow:
    0 0 0 1px rgba(200,151,58,0.28),
    0 24px 64px rgba(0,0,0,0.5);
}

.chat-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}

.chat-close:hover {
  background: rgba(255,255,255,0.16);
  color: var(--white);
}

.chat-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.chat-head-copy {
  padding-right: 40px;
}

.chat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.chat-backup {
  margin: 0;
  text-align: left;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.chat-backup a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.chat-backup a:hover { color: var(--gold); }


/* ============ WHY US ============ */

.why-us {
  padding: 80px 64px;
  background: var(--navy);
}

.why-us-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.section-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.75;
}

.why-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px 24px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item-num {
  width: 32px;
  height: 32px;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.6;
}

.why-us-visual {
  display: grid;
  gap: 14px;
}

.why-photo {
  height: 240px;
  border-radius: var(--radius-lg);
  background: url("images/broll/broll-tools-flatlay.jpg") center / cover no-repeat;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  border: 1px solid rgba(200,151,58,0.2);
}

.why-stats-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.why-stats-row .why-stat-card {
  min-width: min(280px, 100%);
  max-width: 320px;
  width: 100%;
}

.why-stat-card {
  background: rgba(200,151,58,0.08);
  border: 1px solid rgba(200,151,58,0.18);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.why-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.why-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* ============ FOOTER ============ */

footer {
  background: #080f1a;
  padding: 48px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: start;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  min-width: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.4;
  margin: 0 0 6px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-logo span {
  color: var(--gold);
}


.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.5;
  margin-top: 2px;
}

.footer-meta a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-meta a:hover { color: var(--gold); }

.footer-more {
  justify-self: end;
  align-self: start;
  min-width: 0;
  max-width: 16rem;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  padding: 0;
}

.footer-more-summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  user-select: none;
}

.footer-more-summary::-webkit-details-marker { display: none; }

.footer-more-summary::after {
  content: "+";
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.footer-more[open] .footer-more-summary::after {
  content: "–";
}

.footer-more-summary:hover {
  color: rgba(255,255,255,0.85);
}

.footer-more-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-more-panel a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.footer-more-panel a:hover {
  color: var(--gold);
  background: rgba(224,164,58,0.08);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy a {
  color: var(--gold);
  text-decoration: none;
}

.tsbpe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin: 0 0 14px;
  padding: 0 8px;
  color: rgba(255,255,255,0.32);
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.tsbpe-name {
  color: rgba(255,255,255,0.42);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.72rem;
  font-weight: 500;
}

.tsbpe-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.64rem;
  color: rgba(255,255,255,0.3);
}

.tsbpe-sep {
  opacity: 0.5;
}

.tsbpe-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 28rem;
}

.tsbpe-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 8px;
}

.tsbpe-label {
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.58rem;
  font-weight: 600;
}

.tsbpe a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.tsbpe a:hover,
.tsbpe-name:hover {
  color: var(--gold-light);
}

@media (max-width: 720px) {
  .tsbpe {
    font-size: 0.64rem;
    gap: 10px;
    margin-bottom: 16px;
  }

  .tsbpe-name {
    font-size: 0.68rem;
    line-height: 1.35;
    max-width: 16rem;
  }

  .tsbpe-rows {
    gap: 8px;
  }

  .tsbpe-row {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
}



/* ============ TIPS ============ */

.tips {
  padding: 80px 64px;
  background: var(--navy-mid, #0c1b2e);
  border-top: 1px solid rgba(200,151,58,0.12);
}

.tips-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tips-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.tip-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,151,58,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.tip-card:hover {
  border-color: rgba(200,151,58,0.45);
  background: rgba(200,151,58,0.06);
  transform: translateY(-2px);
}

.tip-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #152540;
}

.tip-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tip-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.3;
}

.tip-card-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}


.tips-trust {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
}

.tips-video-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.tips-video-wrap video {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,151,58,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  background: #08101a;
  display: block;
}

.tips-video-caption {
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.5;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  nav {
    padding: 12px 24px;
  }

  .hero {
    padding: 80px 0 0;
  }

  .hero-stage {
    inset: 80px 0 0 0;
    width: min(960px, 94vw);
  }

  .why-us {
    padding: 64px 32px;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tips {
    padding: 64px 32px;
  }

  .tips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer {
    padding: 40px 32px;
    grid-template-columns: 1fr;
  }

  .footer-more {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 720px) {
  nav {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 10px;
  }

  .nav-actions {
    justify-content: space-between;
    width: 100%;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .tips {
    padding: 48px 16px;
  }

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

  .hero {
    padding: 72px 0 0;
  }

  .hero-stage {
    inset: 72px 0 0 0;
    justify-content: center;
    padding: 0 16px 24px;
    align-items: flex-end;
  }

  .hero-cta {
    width: min(100%, 320px);
    justify-self: stretch;
    white-space: normal;
  }

  .chat-card {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 14px 12px 10px;
  }

  #chat-launcher {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  #chat-widget {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: min(92vh, 720px);
    max-height: 92vh;
    border-radius: 0;
    transform: translateY(24px);
    transform-origin: bottom center;
  }

  #chat-widget .form-card.chat-card {
    border-radius: 18px 18px 0 0;
  }

  html.chat-open body {
    overflow: hidden;
    touch-action: none;
  }

  .chat-head-mark {
    width: 64px;
    height: 64px;
  }

  .chat-cam {
    min-width: 48px;
    height: 40px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .chat-compose {
    flex-wrap: wrap;
    gap: 6px;
  }

  .chat-photo-actions {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .chat-compose #chat-input {
    flex: 1 1 auto;
    min-width: 0;
  }

  .chat-head h2 { font-size: 1.15rem; }

  .chat-foot {
    flex-wrap: wrap;
    gap: 8px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .why-stats-row {
    justify-content: center;
  }

  .chat-compose button {
    padding: 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
  #chat-launcher .launcher-pulse { animation: none; opacity: 0; }
  #chat-widget { transition: none; }
  html { scroll-behavior: auto; }
  .board-stamp.show,
  .board-stamp.show .board-stamp-inner,
  .board-stamp.fade { animation: none; }
  .board-stamp.show { opacity: 1; }
  .chat-head-mark .helper-svg,
  .helper-live-ring,
  .chat-head-mark.is-listening .helper-live-ring,
  .chat-head-mark.is-listening .helper-svg,
  .chat-head-mark.is-listening .helper-svg .helper-headset-glow,
  .chat-head-mark.is-working .helper-svg,
  .chat-head-mark.is-working .helper-svg .helper-mouth-closed,
  .chat-head-mark.is-working .helper-svg .helper-mouth-open,
  .chat-head-mark.is-working .helper-speech-ticks,
  .chat-head-mark.is-working .helper-live-ring {
    animation: none !important;
  }
  .chat-head-mark .helper-svg {
    transform: none !important;
  }
  .chat-head-mark.is-listening .helper-svg {
    transform: scale(1.04) !important;
  }
  .chat-head-mark.is-listening .helper-svg .helper-headset-glow {
    opacity: 0.35;
  }
  .chat-head-mark.is-working .helper-svg .helper-mouth-open {
    opacity: 0 !important;
  }
  .chat-head-mark.is-working .helper-svg .helper-mouth-closed {
    opacity: 1 !important;
  }
  .chat-head-mark.is-working .helper-speech-ticks {
    opacity: 0 !important;
  }
  /* Freeze SMIL via CSS visibility of animated bits stays static */
  .helper-svg .helper-smil-only {
    display: none !important;
  }
}
