:root {
  --sml-font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.sml-hub,
body.sml-shoot-page {
  font-family: var(--sml-font-stack);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: var(--shoot-text, #0f172a);
  background: var(--shoot-bg, #ffffff);
  line-height: 1.6;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

/* Header */
.sml-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(18px);
}

.sml-site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sml-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: #0f172a;
  transition: transform 0.2s ease;
}

.sml-logo:hover {
  transform: scale(1.02);
}

.sml-logo img {
  width: 36px;
  height: 36px;
}

.sml-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(241, 245, 249, 0.9);
  padding: 6px 8px;
  border-radius: 999px;
}

.sml-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sml-nav a:hover,
.sml-nav a:focus {
  background: rgba(126, 34, 206, 0.12);
  color: #5b21b6;
}

.sml-nav .is-active {
  background: rgba(109, 40, 217, 0.12);
  color: #5b21b6;
}

.sml-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sml-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.sml-cta__primary:hover,
.sml-cta__primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.sml-main {
  flex: 1 1 auto;
}

/* Footer */
.sml-site-footer {
  background: #f8fafc;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin-top: 80px;
}

.sml-site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: #475569;
}

@media (min-width: 768px) {
  .sml-site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.sml-site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sml-site-footer nav a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sml-site-footer nav a:hover,
.sml-site-footer nav a:focus {
  color: #1f2937;
}

/* Hub styles */
body.sml-hub {
  --shoot-bg: linear-gradient(135deg, #f5f0ff, #fefbff);
  --shoot-text: #111827;
}

body.sml-hub .sml-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.sml-hub-hero {
  text-align: center;
  padding: 88px 24px 40px;
}

.sml-hub-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 0.75rem;
  color: #312e81;
}

.sml-hub-hero .lead {
  max-width: 720px;
  margin: 0 auto 12px;
  font-size: 1.05rem;
  color: #4b5563;
}

.sml-hub-hero .sml-related-link {
  color: #6d28d9;
  margin-top: 16px;
  font-size: 0.95rem;
}

.sml-hub-hero .sml-related-link a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.sml-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sml-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 45px -24px rgba(79, 70, 229, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sml-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(79, 70, 229, 0.45);
}

.sml-card h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #312e81;
}

.sml-card p {
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

.sml-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #6d28d9;
  text-decoration: none;
}

/* Detail page shared styles */
body.sml-shoot-page {
  --shoot-button-text: #ffffff;
  display: flex;
  flex-direction: column;
}

body.sml-shoot-page .sml-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Hero section */
body.sml-shoot-page .hero {
  padding: 88px 24px 48px;
  text-align: center;
  position: relative;
}

body.sml-shoot-page .hero-inner {
  display: grid;
  gap: 32px;
  justify-items: center;
}

body.sml-shoot-page .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

body.sml-shoot-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--shoot-accent, #4338ca) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

body.sml-shoot-page .hero-gallery {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
  box-shadow: 0 24px 50px -28px var(--shoot-card-shadow, rgba(79, 70, 229, 0.35));
  padding: 12px;
  max-width: 320px;
  margin: 0 auto;
}

body.sml-shoot-page .hero-gallery-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.sml-shoot-page .hero-gallery figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px -28px var(--shoot-card-shadow, rgba(79, 70, 229, 0.35));
}

body.sml-shoot-page .hero-gallery figure::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

body.sml-shoot-page .hero-gallery figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

body.sml-shoot-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.sml-shoot-page .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--shoot-accent, #4338ca);
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 14px;
  background: var(--shoot-eyebrow-bg, rgba(67, 56, 202, 0.1));
  border-radius: 999px;
}

body.sml-shoot-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: var(--shoot-heading, #312e81);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

body.sml-shoot-page p.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--shoot-lead, #4338ca);
  line-height: 1.6;
}

body.sml-shoot-page .hero ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 2rem auto;
  display: grid;
  gap: 12px;
}

body.sml-shoot-page .hero ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
  color: var(--shoot-body-copy, #475569);
  font-size: 1rem;
  text-align: left;
}

body.sml-shoot-page .hero ul li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--shoot-accent, #4338ca);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 14px;
}

body.sml-shoot-page .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin: 24px 0 8px;
}

body.sml-shoot-page .hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--shoot-button-bg, #312e81);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.25));
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.sml-shoot-page .hero-cta-link::after {
  content: '→';
  font-size: 1.1rem;
}

body.sml-shoot-page .hero-cta-link:hover,
body.sml-shoot-page .hero-cta-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -18px var(--shoot-card-shadow, rgba(79, 70, 229, 0.4));
}

body.sml-shoot-page .hero-social-proof {
  margin: 0;
  font-size: 0.95rem;
  color: var(--shoot-body-copy, #475569);
}

@media (min-width: 960px) {
  body.sml-shoot-page .hero {
    text-align: left;
  }

  body.sml-shoot-page .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
    align-items: center;
    justify-items: stretch;
  }

  body.sml-shoot-page .hero-content {
    align-items: flex-start;
  }

  body.sml-shoot-page .hero-gallery {
    margin: 0;
  }

  body.sml-shoot-page p.lead {
    margin-left: 0;
    margin-right: 0;
  }

  body.sml-shoot-page .hero ul {
    margin: 2rem 0;
  }

  body.sml-shoot-page .hero-cta-group {
    justify-content: flex-start;
  }
}

body.sml-shoot-page a.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--shoot-button-bg, #312e81);
  color: var(--shoot-button-text, #fff);
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px -8px var(--shoot-button-shadow, rgba(49, 46, 129, 0.4));
}

body.sml-shoot-page a.button:hover,
body.sml-shoot-page a.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px var(--shoot-button-shadow, rgba(49, 46, 129, 0.5));
}

body.sml-shoot-page a.button::after {
  content: '→';
  font-size: 1.2rem;
}

.cta-band {
  margin: 72px 0 56px;
}

.cta-band-inner {
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.1), rgba(67, 56, 202, 0));
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 26px 60px -44px var(--shoot-card-shadow, rgba(79, 70, 229, 0.35));
}

.cta-band-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--shoot-heading, #312e81);
  margin-bottom: 12px;
}

.cta-band-inner p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--shoot-body-copy, #475569);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-band-inner .button {
  margin-top: 0;
}

@media (max-width: 640px) {
  .cta-band-inner {
    padding: 32px 22px;
  }
}

body.sml-shoot-page .cta-support,
body.sml-shoot-page .sml-internal-links,
body.sml-shoot-page .related-link {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--shoot-body-copy, #475569);
}

body.sml-shoot-page .sml-internal-links a,
body.sml-shoot-page .related-link a {
  color: var(--shoot-accent, #4338ca);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

body.sml-shoot-page .sml-internal-links a:hover,
body.sml-shoot-page .related-link a:hover {
  border-bottom-color: var(--shoot-accent, #4338ca);
}

/* How it works section */
.how-it-works {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  border-radius: 24px;
  padding: 48px 32px;
  margin: 48px 0;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--shoot-heading, #312e81);
}

.workflow-steps {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.workflow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px -8px var(--shoot-card-shadow, rgba(79, 70, 229, 0.25));
}

.workflow-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--shoot-accent, #4338ca), var(--shoot-lead, #4338ca));
  color: white;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px var(--shoot-card-shadow, rgba(79, 70, 229, 0.4));
}

.workflow-step-content h3 {
  margin: 0 0 8px 0;
  color: var(--shoot-heading, #312e81);
  font-size: 1.3rem;
}

.workflow-step-content p {
  margin: 0;
  color: var(--shoot-body-copy, #475569);
  line-height: 1.6;
}

/* Sample gallery section */
body.sml-shoot-page section {
  max-width: 1200px;
  margin: 48px auto;
  padding: 32px 24px;
}

body.sml-shoot-page section h2 {
  color: var(--shoot-heading, #312e81);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

body.sml-shoot-page .grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

body.sml-shoot-page figure {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
  padding: 16px;
  box-shadow: 0 18px 45px -30px var(--shoot-card-shadow, rgba(79, 70, 229, 0.35));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

body.sml-shoot-page figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px -24px var(--shoot-card-shadow, rgba(79, 70, 229, 0.45));
}

body.sml-shoot-page figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.sml-shoot-page figure:hover img {
  transform: scale(1.05);
}

body.sml-shoot-page figure figcaption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--shoot-body-copy, #475569);
  line-height: 1.5;
}

/* Benefits section */
.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 32px;
}

.benefit-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px var(--shoot-card-shadow, rgba(79, 70, 229, 0.3));
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  background: var(--shoot-accent, #4338ca);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin: 0 0 8px 0;
  color: var(--shoot-heading, #312e81);
  font-size: 1.1rem;
}

.benefit-card p {
  margin: 0;
  color: var(--shoot-body-copy, #475569);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ section */
body.sml-shoot-page .faq {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  border-radius: 24px;
  padding: 48px 32px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
}

body.sml-shoot-page .faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

body.sml-shoot-page .faq details {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid var(--shoot-card-border, rgba(148, 163, 184, 0.2));
  transition: box-shadow 0.2s ease;
}

body.sml-shoot-page .faq details:hover {
  box-shadow: 0 4px 12px -4px var(--shoot-card-shadow, rgba(79, 70, 229, 0.2));
}

body.sml-shoot-page .faq details[open] {
  box-shadow: 0 8px 24px -8px var(--shoot-card-shadow, rgba(79, 70, 229, 0.3));
}

body.sml-shoot-page .faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--shoot-heading, #312e81);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.sml-shoot-page .faq summary::before {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--shoot-accent, #4338ca);
  color: white;
  border-radius: 6px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

body.sml-shoot-page .faq details[open] summary::before {
  content: '−';
  transform: rotate(90deg);
}

body.sml-shoot-page .faq summary::-webkit-details-marker {
  display: none;
}

body.sml-shoot-page .faq p {
  margin: 16px 0 0 40px;
  color: var(--shoot-body-copy, #475569);
  line-height: 1.7;
}

/* Shoot themes */
body.sml-shoot--linkedin-headshots {
  --shoot-bg: #faf5ff;
  --shoot-text: #0f172a;
  --shoot-heading: #312e81;
  --shoot-lead: #4338ca;
  --shoot-accent: #4338ca;
  --shoot-card-shadow: rgba(79, 70, 229, 0.35);
  --shoot-card-border: rgba(148, 163, 184, 0.2);
  --shoot-button-bg: #312e81;
  --shoot-button-shadow: rgba(49, 46, 129, 0.4);
  --shoot-eyebrow-bg: rgba(67, 56, 202, 0.1);
}

body.sml-shoot--dating-app-photos {
  --shoot-bg: #fff7fb;
  --shoot-text: #111827;
  --shoot-heading: #9d174d;
  --shoot-lead: #be185d;
  --shoot-accent: #be185d;
  --shoot-card-shadow: rgba(236, 72, 153, 0.45);
  --shoot-card-border: rgba(244, 114, 182, 0.25);
  --shoot-button-bg: #be185d;
  --shoot-button-shadow: rgba(190, 24, 93, 0.4);
  --shoot-eyebrow-bg: rgba(190, 24, 93, 0.1);
}

body.sml-shoot--bridal-lookbook {
  --shoot-bg: #fffaf5;
  --shoot-text: #1f2937;
  --shoot-heading: #7c2d12;
  --shoot-lead: #9a3412;
  --shoot-accent: #c2410c;
  --shoot-card-shadow: rgba(217, 119, 6, 0.35);
  --shoot-card-border: rgba(244, 114, 182, 0.25);
  --shoot-button-bg: #c2410c;
  --shoot-button-shadow: rgba(194, 65, 12, 0.4);
  --shoot-body-copy: #4b5563;
  --shoot-eyebrow-bg: rgba(194, 65, 12, 0.1);
}

body.sml-shoot--ecommerce-flatlays {
  --shoot-bg: #fdf8ff;
  --shoot-text: #1f2937;
  --shoot-heading: #7c3aed;
  --shoot-lead: #6d28d9;
  --shoot-accent: #7c3aed;
  --shoot-card-shadow: rgba(124, 58, 237, 0.35);
  --shoot-card-border: rgba(167, 139, 250, 0.3);
  --shoot-button-bg: #7c3aed;
  --shoot-button-shadow: rgba(124, 58, 237, 0.4);
  --shoot-eyebrow-bg: rgba(124, 58, 237, 0.1);
}

body.sml-shoot--podcast-cover-art {
  --shoot-bg: #f5f3ff;
  --shoot-text: #1f2937;
  --shoot-heading: #4c1d95;
  --shoot-lead: #5b21b6;
  --shoot-accent: #5b21b6;
  --shoot-card-shadow: rgba(109, 40, 217, 0.35);
  --shoot-card-border: rgba(139, 92, 246, 0.25);
  --shoot-button-bg: #5b21b6;
  --shoot-button-shadow: rgba(91, 33, 182, 0.4);
  --shoot-eyebrow-bg: rgba(91, 33, 182, 0.1);
}

body.sml-shoot--fitness-coaching {
  --shoot-bg: #f4f9ff;
  --shoot-text: #111827;
  --shoot-heading: #086375;
  --shoot-lead: #0891b2;
  --shoot-accent: #0891b2;
  --shoot-card-shadow: rgba(8, 145, 178, 0.35);
  --shoot-card-border: rgba(14, 165, 233, 0.25);
  --shoot-button-bg: #0891b2;
  --shoot-button-shadow: rgba(8, 145, 178, 0.4);
  --shoot-frame-bg: #e0f2fe;
  --shoot-eyebrow-bg: rgba(8, 145, 178, 0.1);
}

body.sml-shoot--real-estate-branding {
  --shoot-bg: #f1f5ff;
  --shoot-text: #0f172a;
  --shoot-heading: #1d4ed8;
  --shoot-lead: #2563eb;
  --shoot-accent: #2563eb;
  --shoot-card-shadow: rgba(37, 99, 235, 0.35);
  --shoot-card-border: rgba(96, 165, 250, 0.25);
  --shoot-button-bg: #2563eb;
  --shoot-button-shadow: rgba(37, 99, 235, 0.4);
  --shoot-frame-bg: #e2e8f0;
  --shoot-eyebrow-bg: rgba(37, 99, 235, 0.1);
}

body.sml-shoot--course-instructor-photos {
  --shoot-bg: #f5f9ff;
  --shoot-text: #111827;
  --shoot-heading: #0f766e;
  --shoot-lead: #0d9488;
  --shoot-accent: #0d9488;
  --shoot-card-shadow: rgba(14, 116, 144, 0.35);
  --shoot-card-border: rgba(13, 148, 136, 0.25);
  --shoot-button-bg: #0d9488;
  --shoot-button-shadow: rgba(13, 148, 136, 0.4);
  --shoot-eyebrow-bg: rgba(13, 148, 136, 0.1);
}

body.sml-shoot--personal-stylist-lookbook {
  --shoot-bg: #fff7fa;
  --shoot-text: #1f2937;
  --shoot-heading: #be185d;
  --shoot-lead: #db2777;
  --shoot-accent: #db2777;
  --shoot-card-shadow: rgba(225, 29, 72, 0.35);
  --shoot-card-border: rgba(236, 72, 153, 0.25);
  --shoot-button-bg: #db2777;
  --shoot-button-shadow: rgba(219, 39, 119, 0.4);
  --shoot-eyebrow-bg: rgba(219, 39, 119, 0.1);
}

body.sml-shoot--luxury-travel-influencer {
  --shoot-bg: #f0f9ff;
  --shoot-text: #0f172a;
  --shoot-heading: #0369a1;
  --shoot-lead: #0284c7;
  --shoot-accent: #0284c7;
  --shoot-card-shadow: rgba(14, 165, 233, 0.35);
  --shoot-card-border: rgba(6, 182, 212, 0.25);
  --shoot-button-bg: #0284c7;
  --shoot-button-shadow: rgba(2, 132, 199, 0.4);
  --shoot-frame-bg: #e0f2fe;
  --shoot-eyebrow-bg: rgba(2, 132, 199, 0.1);
}

body.sml-shoot--telehealth-headshots {
  --shoot-bg: #f0f9ff;
  --shoot-text: #0f172a;
  --shoot-heading: #0c4a6e;
  --shoot-lead: #0369a1;
  --shoot-accent: #0ea5e9;
  --shoot-card-shadow: rgba(8, 145, 178, 0.35);
  --shoot-card-border: rgba(14, 116, 144, 0.2);
  --shoot-button-bg: #0ea5e9;
  --shoot-button-shadow: rgba(14, 165, 233, 0.4);
  --shoot-eyebrow-bg: rgba(2, 132, 199, 0.1);
  --shoot-frame-bg: #e0f2fe;
}

body.sml-shoot--hospitality-branding {
  --shoot-bg: #fffaf5;
  --shoot-text: #1f2937;
  --shoot-heading: #92400e;
  --shoot-lead: #b45309;
  --shoot-accent: #d97706;
  --shoot-card-shadow: rgba(180, 83, 9, 0.28);
  --shoot-card-border: rgba(217, 119, 6, 0.2);
  --shoot-button-bg: #d97706;
  --shoot-button-shadow: rgba(217, 119, 6, 0.4);
  --shoot-frame-bg: #fef3c7;
  --shoot-eyebrow-bg: rgba(217, 119, 6, 0.1);
}

body.sml-shoot--legal-firm-branding {
  --shoot-bg: #f5f7ff;
  --shoot-text: #101828;
  --shoot-heading: #1e3a8a;
  --shoot-lead: #1d4ed8;
  --shoot-accent: #1d4ed8;
  --shoot-card-shadow: rgba(30, 64, 175, 0.35);
  --shoot-card-border: rgba(29, 78, 216, 0.18);
  --shoot-button-bg: #1d4ed8;
  --shoot-button-shadow: rgba(29, 78, 216, 0.4);
  --shoot-eyebrow-bg: rgba(29, 78, 216, 0.1);
  --shoot-body-copy: #475467;
  --shoot-frame-bg: #e0e7ff;
}

body.sml-shoot--creator-merch {
  --shoot-bg: #f8f5ff;
  --shoot-text: #1f2937;
  --shoot-heading: #5b21b6;
  --shoot-lead: #6d28d9;
  --shoot-accent: #7c3aed;
  --shoot-card-shadow: rgba(91, 33, 182, 0.35);
  --shoot-card-border: rgba(124, 58, 237, 0.2);
  --shoot-button-bg: #7c3aed;
  --shoot-button-shadow: rgba(124, 58, 237, 0.4);
  --shoot-eyebrow-bg: rgba(124, 58, 237, 0.1);
  --shoot-frame-bg: #ede9fe;
}

body.sml-shoot--nonprofit-campaign {
  --shoot-bg: #f1fcf7;
  --shoot-text: #0b1f1d;
  --shoot-heading: #115e59;
  --shoot-lead: #0f766e;
  --shoot-accent: #0f766e;
  --shoot-card-shadow: rgba(17, 94, 89, 0.32);
  --shoot-card-border: rgba(15, 118, 110, 0.18);
  --shoot-button-bg: #0f766e;
  --shoot-button-shadow: rgba(15, 118, 110, 0.4);
  --shoot-eyebrow-bg: rgba(15, 118, 110, 0.1);
  --shoot-body-copy: #1f2933;
  --shoot-frame-bg: #d1fae5;
}

body.sml-shoot--startup-pitch-assets {
  --shoot-bg: #f3f6ff;
  --shoot-text: #0f172a;
  --shoot-heading: #1d4ed8;
  --shoot-lead: #1e40af;
  --shoot-accent: #2563eb;
  --shoot-card-shadow: rgba(37, 99, 235, 0.35);
  --shoot-card-border: rgba(147, 197, 253, 0.25);
  --shoot-button-bg: #1d4ed8;
  --shoot-button-shadow: rgba(59, 130, 246, 0.35);
  --shoot-eyebrow-bg: rgba(37, 99, 235, 0.1);
  --shoot-body-copy: #1e293b;
}

body.sml-shoot--remote-onboarding-profiles {
  --shoot-bg: #ecfeff;
  --shoot-text: #0f172a;
  --shoot-heading: #0f766e;
  --shoot-lead: #0ea5e9;
  --shoot-accent: #06b6d4;
  --shoot-card-shadow: rgba(6, 182, 212, 0.35);
  --shoot-card-border: rgba(94, 234, 212, 0.25);
  --shoot-button-bg: #0f766e;
  --shoot-button-shadow: rgba(15, 118, 110, 0.35);
  --shoot-eyebrow-bg: rgba(6, 182, 212, 0.12);
  --shoot-body-copy: #0f172a;
}

body.sml-shoot--culinary-brand-photos {
  --shoot-bg: #fff7ed;
  --shoot-text: #1f2937;
  --shoot-heading: #c2410c;
  --shoot-lead: #ea580c;
  --shoot-accent: #f97316;
  --shoot-card-shadow: rgba(234, 88, 12, 0.32);
  --shoot-card-border: rgba(253, 186, 116, 0.3);
  --shoot-button-bg: #c2410c;
  --shoot-button-shadow: rgba(234, 88, 12, 0.35);
  --shoot-eyebrow-bg: rgba(249, 115, 22, 0.1);
  --shoot-body-copy: #7c2d12;
}

body.sml-shoot--wellness-retreat-marketing {
  --shoot-bg: #f0fdf4;
  --shoot-text: #065f46;
  --shoot-heading: #047857;
  --shoot-lead: #0d9488;
  --shoot-accent: #10b981;
  --shoot-card-shadow: rgba(16, 185, 129, 0.32);
  --shoot-card-border: rgba(134, 239, 172, 0.28);
  --shoot-button-bg: #047857;
  --shoot-button-shadow: rgba(13, 148, 136, 0.35);
  --shoot-eyebrow-bg: rgba(16, 185, 129, 0.12);
  --shoot-body-copy: #065f46;
}

body.sml-shoot--higher-ed-faculty-portraits {
  --shoot-bg: #f5f3ff;
  --shoot-text: #1f1d3a;
  --shoot-heading: #4338ca;
  --shoot-lead: #5b21b6;
  --shoot-accent: #6366f1;
  --shoot-card-shadow: rgba(99, 102, 241, 0.32);
  --shoot-card-border: rgba(165, 180, 252, 0.3);
  --shoot-button-bg: #4338ca;
  --shoot-button-shadow: rgba(79, 70, 229, 0.35);
  --shoot-eyebrow-bg: rgba(99, 102, 241, 0.12);
  --shoot-body-copy: #312e81;
}

body.sml-shoot--event-speaker-media {
  --shoot-bg: #f8f5ff;
  --shoot-text: #1f1d3a;
  --shoot-heading: #7c3aed;
  --shoot-lead: #6d28d9;
  --shoot-accent: #9333ea;
  --shoot-card-shadow: rgba(124, 58, 237, 0.32);
  --shoot-card-border: rgba(196, 181, 253, 0.28);
  --shoot-button-bg: #7c3aed;
  --shoot-button-shadow: rgba(147, 51, 234, 0.35);
  --shoot-eyebrow-bg: rgba(147, 51, 234, 0.12);
  --shoot-body-copy: #312e81;
}

body.sml-shoot--author-book-launch {
  --shoot-bg: #fffaf5;
  --shoot-text: #1f2937;
  --shoot-heading: #be123c;
  --shoot-lead: #db2777;
  --shoot-accent: #f43f5e;
  --shoot-card-shadow: rgba(244, 63, 94, 0.3);
  --shoot-card-border: rgba(252, 165, 165, 0.3);
  --shoot-button-bg: #be123c;
  --shoot-button-shadow: rgba(219, 39, 119, 0.35);
  --shoot-eyebrow-bg: rgba(255, 129, 173, 0.16);
  --shoot-body-copy: #7f1d1d;
}

body.sml-shoot--financial-advisor-branding {
  --shoot-bg: #edf2ff;
  --shoot-text: #101e38;
  --shoot-heading: #1e3a8a;
  --shoot-lead: #1d4ed8;
  --shoot-accent: #2563eb;
  --shoot-card-shadow: rgba(37, 99, 235, 0.28);
  --shoot-card-border: rgba(165, 180, 252, 0.35);
  --shoot-button-bg: #1e3a8a;
  --shoot-button-shadow: rgba(37, 99, 235, 0.35);
  --shoot-eyebrow-bg: rgba(37, 99, 235, 0.12);
  --shoot-body-copy: #1e293b;
}

body.sml-shoot--healthcare-recruitment {
  --shoot-bg: #f0f9ff;
  --shoot-text: #0b172a;
  --shoot-heading: #0284c7;
  --shoot-lead: #0ea5e9;
  --shoot-accent: #38bdf8;
  --shoot-card-shadow: rgba(14, 165, 233, 0.32);
  --shoot-card-border: rgba(125, 211, 252, 0.3);
  --shoot-button-bg: #0284c7;
  --shoot-button-shadow: rgba(14, 165, 233, 0.35);
  --shoot-eyebrow-bg: rgba(14, 165, 233, 0.12);
  --shoot-body-copy: #0f172a;
}

body.sml-shoot--municipal-tourism-campaign {
  --shoot-bg: #fff7fb;
  --shoot-text: #1f2937;
  --shoot-heading: #be185d;
  --shoot-lead: #db2777;
  --shoot-accent: #ec4899;
  --shoot-card-shadow: rgba(236, 72, 153, 0.3);
  --shoot-card-border: rgba(251, 207, 232, 0.3);
  --shoot-button-bg: #be185d;
  --shoot-button-shadow: rgba(219, 39, 119, 0.35);
  --shoot-eyebrow-bg: rgba(236, 72, 153, 0.12);
  --shoot-body-copy: #831843;
}

body.sml-shoot--corporate-townhall-highlights {
  --shoot-bg: #fff7ed;
  --shoot-text: #1f2933;
  --shoot-heading: #b45309;
  --shoot-lead: #ea580c;
  --shoot-accent: #f97316;
  --shoot-card-shadow: rgba(234, 88, 12, 0.28);
  --shoot-card-border: rgba(253, 186, 116, 0.3);
  --shoot-button-bg: #b45309;
  --shoot-button-shadow: rgba(234, 88, 12, 0.35);
  --shoot-eyebrow-bg: rgba(251, 191, 36, 0.16);
  --shoot-body-copy: #7c2d12;
}

body.sml-shoot--nonprofit-grant-proposals {
  --shoot-bg: #f0fdf4;
  --shoot-text: #064e3b;
  --shoot-heading: #047857;
  --shoot-lead: #0f766e;
  --shoot-accent: #10b981;
  --shoot-card-shadow: rgba(16, 185, 129, 0.28);
  --shoot-card-border: rgba(134, 239, 172, 0.3);
  --shoot-button-bg: #047857;
  --shoot-button-shadow: rgba(13, 148, 136, 0.32);
  --shoot-eyebrow-bg: rgba(16, 185, 129, 0.14);
  --shoot-body-copy: #0f5132;
}

body.sml-shoot--esports-team-branding {
  --shoot-bg: #0f172a;
  --shoot-text: #e2e8f0;
  --shoot-heading: #7c3aed;
  --shoot-lead: #a855f7;
  --shoot-accent: #f472b6;
  --shoot-card-shadow: rgba(168, 85, 247, 0.45);
  --shoot-card-border: rgba(125, 211, 252, 0.25);
  --shoot-button-bg: #7c3aed;
  --shoot-button-shadow: rgba(236, 72, 153, 0.4);
  --shoot-eyebrow-bg: rgba(129, 140, 248, 0.18);
  --shoot-body-copy: #cbd5f5;
}

body.sml-shoot--real-estate-listing-upgrades {
  --shoot-bg: #f8fafc;
  --shoot-text: #1e293b;
  --shoot-heading: #ef4444;
  --shoot-lead: #f97316;
  --shoot-accent: #fbbf24;
  --shoot-card-shadow: rgba(248, 113, 113, 0.28);
  --shoot-card-border: rgba(254, 215, 170, 0.3);
  --shoot-button-bg: #ef4444;
  --shoot-button-shadow: rgba(249, 115, 22, 0.32);
  --shoot-eyebrow-bg: rgba(251, 191, 36, 0.14);
  --shoot-body-copy: #334155;
}

body.sml-shoot--product-led-growth-demos {
  --shoot-bg: #ecfeff;
  --shoot-text: #0f172a;
  --shoot-heading: #0ea5e9;
  --shoot-lead: #2563eb;
  --shoot-accent: #38bdf8;
  --shoot-card-shadow: rgba(14, 165, 233, 0.3);
  --shoot-card-border: rgba(125, 211, 252, 0.32);
  --shoot-button-bg: #0ea5e9;
  --shoot-button-shadow: rgba(59, 130, 246, 0.32);
  --shoot-eyebrow-bg: rgba(14, 165, 233, 0.16);
  --shoot-body-copy: #0f172a;
}

body.sml-shoot--medtech-product-launch {
  --shoot-bg: #f0f9ff;
  --shoot-text: #0b172a;
  --shoot-heading: #0ea5e9;
  --shoot-lead: #0f766e;
  --shoot-accent: #22d3ee;
  --shoot-card-shadow: rgba(14, 165, 233, 0.32);
  --shoot-card-border: rgba(165, 243, 252, 0.3);
  --shoot-button-bg: #0ea5e9;
  --shoot-button-shadow: rgba(13, 148, 136, 0.3);
  --shoot-eyebrow-bg: rgba(20, 184, 166, 0.16);
  --shoot-body-copy: #0f172a;
}

body.sml-shoot--boutique-fitness-franchise {
  --shoot-bg: #fff5f5;
  --shoot-text: #31102f;
  --shoot-heading: #db2777;
  --shoot-lead: #f97316;
  --shoot-accent: #fb7185;
  --shoot-card-shadow: rgba(251, 113, 133, 0.32);
  --shoot-card-border: rgba(253, 164, 175, 0.3);
  --shoot-button-bg: #db2777;
  --shoot-button-shadow: rgba(249, 115, 22, 0.35);
  --shoot-eyebrow-bg: rgba(249, 115, 22, 0.16);
  --shoot-body-copy: #701a44;
}

body.sml-shoot--sustainability-report-imagery {
  --shoot-bg: #f0fdf4;
  --shoot-text: #064e3b;
  --shoot-heading: #047857;
  --shoot-lead: #0d9488;
  --shoot-accent: #22c55e;
  --shoot-card-shadow: rgba(34, 197, 94, 0.3);
  --shoot-card-border: rgba(134, 239, 172, 0.3);
  --shoot-button-bg: #047857;
  --shoot-button-shadow: rgba(13, 148, 136, 0.3);
  --shoot-eyebrow-bg: rgba(34, 197, 94, 0.16);
  --shoot-body-copy: #065f46;
}

body.sml-shoot--political-campaign-media {
  --shoot-bg: #f8fafc;
  --shoot-text: #111827;
  --shoot-heading: #1d4ed8;
  --shoot-lead: #dc2626;
  --shoot-accent: #f59e0b;
  --shoot-card-shadow: rgba(59, 130, 246, 0.32);
  --shoot-card-border: rgba(248, 113, 113, 0.28);
  --shoot-button-bg: #1d4ed8;
  --shoot-button-shadow: rgba(220, 38, 38, 0.32);
  --shoot-eyebrow-bg: rgba(59, 130, 246, 0.16);
  --shoot-body-copy: #1f2937;
}

body.sml-shoot--wedding-vendor-portfolio {
  --shoot-bg: #fff7fb;
  --shoot-text: #3f1f3f;
  --shoot-heading: #db2777;
  --shoot-lead: #ec4899;
  --shoot-accent: #f9a8d4;
  --shoot-card-shadow: rgba(236, 72, 153, 0.3);
  --shoot-card-border: rgba(249, 168, 212, 0.32);
  --shoot-button-bg: #db2777;
  --shoot-button-shadow: rgba(236, 72, 153, 0.32);
  --shoot-eyebrow-bg: rgba(249, 168, 212, 0.18);
  --shoot-body-copy: #4c1d4c;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .sml-site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 12px;
  }

  .sml-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .sml-cta {
    width: 100%;
    justify-content: center;
  }

  body.sml-hub .sml-main,
  body.sml-shoot-page .sml-main,
  body.sml-shoot-page section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .workflow-step {
    flex-direction: column;
  }

  .workflow-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  body.sml-shoot-page .faq p {
    margin-left: 0;
  }

  body.sml-shoot-page .grid {
    grid-template-columns: 1fr;
  }

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