/* ============================================================
   HARMONY HEALTH ADVOCACY — Global Stylesheet
   Design tokens from HARMONY_BUILD_PROMPT.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Hanken+Grotesk:wght@400;450;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:      #4B1E8A;
  --secondary:    #CDB8E8;
  --accent:       #6F4AA8;
  --bg:           #F5F4F7;
  --surface:      #FFFFFF;
  --ink:          #333333;
  --ink-soft:     #6F6F78;
  --line:         #E2E2E8;
  --primary-dark: #3A1769;
  --accent-dark:  #573A86;
  --surface-soft: #ECE6F4;
  --alert:        #B23B2E;
  --radius:       14px;
  --shadow:       0 2px 16px rgba(75, 30, 138, 0.10);
  --shadow-hover: 0 6px 28px rgba(75, 30, 138, 0.18);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: underline; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { max-width: 68ch; }
p + p { margin-top: 1rem; }

ul { list-style: none; }

/* ── LAYOUT UTILS ───────────────────────────────────────── */
.container {
  width: min(1140px, 100% - 3rem);
  margin-inline: auto;
}

section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-label {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 58ch;
}

.centered { text-align: center; }
.centered p, .centered .section-intro { margin-inline: auto; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  border: 2px solid transparent;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
}

.site-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.site-logo span { display: block; font-size: 0.7rem; font-weight: 500; font-family: 'Hanken Grotesk', sans-serif; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; }
.site-logo .logo-img { display: block; height: 60px; width: auto; }
@media (max-width: 480px) { .site-logo .logo-img { height: 48px; } }

.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.header-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.header-nav a:hover, .header-nav a.active {
  background: var(--surface-soft);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.phone-link-icon { flex-shrink: 0; }
.phone-link:hover { color: var(--primary-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}
.menu-toggle svg { display: block; }

/* Mobile nav */
@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 0.75rem 1rem; }
  .menu-toggle { display: flex; }
  .header-inner { position: relative; }
  .site-logo span { display: none; }
}

@media (max-width: 480px) {
  .header-actions .btn { display: none; }
  .phone-link { font-size: 0.9rem; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--surface-soft);
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
}

.hero-content .eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.hero-content .subhead {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 48ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-phone {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
}
.hero-phone a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { height: 340px; order: -1; }
  .hero-content { padding: 48px 0; }
}

/* ── INTRO BAND ─────────────────────────────────────────── */
.intro-band {
  background: var(--surface);
  padding: 72px 0;
}
.intro-band p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  color: var(--ink);
}

/* ── BENEFIT GRID ───────────────────────────────────────── */
.benefits { background: var(--bg); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}

.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--surface-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

/* ── WHO WE SERVE CHIPS ─────────────────────────────────── */
.serve { background: var(--surface-soft); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--ink);
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.chip:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-inline: auto; margin-bottom: 2rem; max-width: 50ch; font-size: 1.1rem; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.cta-band .btn-primary:hover {
  background: var(--surface-soft);
  border-color: var(--surface-soft);
  color: var(--primary-dark);
}
.cta-band .btn-secondary {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.cta-band .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}

.footer-mission {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  max-width: 36ch;
  line-height: 1.55;
}

.footer-contact a, .footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.footer-contact a:hover, .footer-nav a:hover { color: var(--secondary); }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--secondary); }

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

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.page-hero {
  background: var(--surface-soft);
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { color: var(--primary); margin-bottom: 0.75rem; }
.page-hero p { color: var(--ink-soft); max-width: 55ch; margin-inline: auto; font-size: 1.1rem; }

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

.about-headshot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
  padding: 0;
}
.about-headshot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.credential-tag {
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--secondary);
}

.roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.role-tag {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}
.role-tag:not(:last-child)::after { content: ' ·'; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-headshot { max-width: 320px; aspect-ratio: 1; }
}

.mission-vision {
  background: var(--surface-soft);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.mv-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.mv-card h3 { color: var(--primary); margin-bottom: 1rem; }

@media (max-width: 700px) {
  .mv-grid { grid-template-columns: 1fr; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--surface-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.value-icon svg { display: block; }
.value-card h4 { color: var(--primary); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--ink-soft); max-width: none; }

.promise-block {
  background: var(--primary);
  padding: 72px 0;
  text-align: center;
}

.promise-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

.promise-quote::before { content: '\201C'; }
.promise-quote::after  { content: '\201D'; }

/* ── SERVICES PAGE ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--primary);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-card h3 { color: var(--primary); margin-bottom: 1rem; }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink);
}

.service-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ── WHO WE HELP ────────────────────────────────────────── */
.audience-section { background: var(--bg); }

.audience-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.audience-block:last-child { border-bottom: none; }
.audience-block:nth-child(even) .audience-text { order: -1; }

.audience-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  border-radius: var(--radius);
  padding: 4rem;
  min-height: 320px;
  overflow: hidden;
}

.audience-emoji { font-size: 5rem; }
.audience-svg { color: var(--accent); }

.audience-text h2 { color: var(--primary); margin-bottom: 1rem; }
.audience-text p { color: var(--ink); line-height: 1.7; }

@media (max-width: 768px) {
  .audience-block { grid-template-columns: 1fr; gap: 2rem; }
  .audience-block:nth-child(even) .audience-text { order: 0; }
  .audience-icon-wrap { padding: 2.5rem; min-height: 180px; }
  .audience-emoji { font-size: 3.5rem; }
}

/* ── CONTACT / FORM ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.form-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group label .req {
  color: var(--alert);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75, 30, 138, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.privacy-note {
  background: var(--surface-soft);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-info-card h3 { color: var(--primary); margin-bottom: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--surface-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.contact-item a:hover { color: var(--primary-dark); text-decoration: underline; }

/* ── THANK YOU ──────────────────────────────────────────── */
.thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--surface-soft);
}
.thankyou-inner { max-width: 600px; margin-inline: auto; padding: 80px 1.5rem; }
.thankyou-icon { color: var(--primary); margin-bottom: 1.5rem; line-height: 0; }
.thankyou-icon svg { display: inline-block; }
.thankyou h1 { color: var(--primary); margin-bottom: 1rem; }
.thankyou p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 1.5rem; }

/* ── PRIVACY / ACCESSIBILITY PAGES ─────────────────────── */
.prose-page { background: var(--surface); }
.prose-body { max-width: 72ch; }
.prose-body h2 { color: var(--primary); margin: 2rem 0 0.75rem; }
.prose-body h3 { margin: 1.5rem 0 0.5rem; }
.prose-body p { margin-bottom: 1rem; }
.prose-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-body ul li { margin-bottom: 0.4rem; }

/* ── MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  /* Premium staggered upward-slide for the four service cards */
  .services-grid .slide-up {
    opacity: 0;
    transform: translateY(56px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .services-grid .slide-up.visible {
    opacity: 1;
    transform: none;
  }
  .services-grid .slide-up:nth-child(1) { transition-delay: 0.05s; }
  .services-grid .slide-up:nth-child(2) { transition-delay: 0.18s; }
  .services-grid .slide-up:nth-child(3) { transition-delay: 0.31s; }
  .services-grid .slide-up:nth-child(4) { transition-delay: 0.44s; }
}

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 999;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── SLOW DOLLY-IN (KEN BURNS) ON PHOTOS ───────────────────── */
/* Any image given .dolly slowly pushes in and eases back out.   */
/* Its parent must clip the overflow (.dolly-frame does this).    */
.dolly-frame { overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
  .dolly {
    transform-origin: 50% 42%;
    will-change: transform;
    animation: dolly-in 32s ease-in-out infinite alternate;
  }
}

@keyframes dolly-in {
  from { transform: scale(1); }
  to   { transform: scale(1.085); }
}
