@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/archivo.woff2") format("woff2"); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/archivo.woff2") format("woff2"); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/archivo.woff2") format("woff2"); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/archivo.woff2") format("woff2"); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/archivo.woff2") format("woff2"); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2"); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2"); }

/* ---------- Tokens ---------- */

:root {
  --bg: #faf9f6;
  --bg-dark: #131311;
  --ink: #161613;
  --ink-soft: #5C5850;
  --ink-faint: #6f6c64;
  --line: #E3E0D7;
  --line-strong: #cfccc1;
  --line-dark: #3A3934;
  --accent: #c8451b;
  --accent-hover: #A93A16;
  --accent-on-dark: #FF8057;
  --paper: #ffffff;
  --font: 'Archivo', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --c1: #ffd45e;
  --c2: #ff8057;
  --c3: #e5537b;
  --c4: #46406e;
  --spectrum: linear-gradient(90deg, var(--c1), var(--c2), var(--c3), var(--c4), var(--c3), var(--c2), var(--c1));
  --radius: 22px;
  --radius-sm: 14px;
  --tile-a: #ffedbe;
  --tile-b: #ffe0d4;
  --tile-c: #fadde6;
  --tile-d: #e3e0f0;
}

/* ---------- Base ---------- */

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; margin: 0; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 750; letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; line-height: 1.3; }

a { color: inherit; text-decoration: none; }

@keyframes spectrum-slide {
  to { background-position: 300% 0; }
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 10px;
  vertical-align: 0.22em;
  background: var(--spectrum);
  background-size: 300% 100%;
  animation: spectrum-slide 7s linear infinite;
}

.eyebrow-dark { color: var(--accent-on-dark); }
.eyebrow-dark::before { background: var(--accent-on-dark); animation: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg); }
.btn:active { transform: scale(0.98); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-huge { padding: 20px 44px; font-size: 1.12rem; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-dark { background: var(--bg); border-color: var(--bg); color: var(--ink); }
.btn-dark:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Arrow link ---------- */

.arrow-link { font-weight: 600; font-size: 0.95rem; transition: color 0.2s ease; }
.arrow-link::after {
  content: "\2192";
  display: inline-block;
  margin-left: 0.4em;
  transition: transform 0.22s ease;
}
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover::after { transform: translateX(5px); }

/* ---------- Tags ---------- */

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--ink-faint);
  padding: 4px 12px;
  border-radius: 999px;
}

.tag-live { border-color: var(--accent); color: var(--accent); }

/* ---------- Card ---------- */

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 30px 28px;
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

a.card:hover { border-color: var(--ink); transform: translateY(-6px) scale(1.01); }
.card h3 { font-size: 1.35rem; margin-top: 2px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.card .arrow-link { margin-top: auto; }

/* ---------- Price card ---------- */

.price-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 36px 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.price-card .price {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.price-card .price span {
  display: block;
  margin-top: 3px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-faint);
  letter-spacing: 0;
  white-space: normal;
}

.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }

.price-card li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.price-card li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

.price-card .best-for {
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin: 4px 0 0;
}

.price-card .best-for strong { color: var(--ink); }
.price-card .btn { margin-top: auto; text-align: center; }

.price-card.featured { background: var(--bg-dark); border-color: var(--bg-dark); color: var(--bg); }
.price-card.featured .eyebrow { color: rgba(250, 249, 246, 0.72); }
.price-card.featured .price { color: var(--bg); }
.price-card.featured .price span { color: rgba(250, 249, 246, 0.6); }
.price-card.featured li { color: #b4b1a6; }
.price-card.featured li::before { color: var(--c1); }
.price-card.featured .best-for { color: #b4b1a6; border-top-color: var(--line-dark); }
.price-card.featured .best-for strong { color: var(--bg); }
.price-card.featured .btn { background: var(--bg); border-color: var(--bg); color: var(--ink); }

/* Hover: sliding fade ring + soft halo behind the card */
.price-card::before,
.price-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: calc(var(--radius) + 3px);
  background: var(--spectrum);
  background-size: 300% 100%;
  animation: spectrum-slide 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.price-card::before { inset: -2px; }
.price-card::after { inset: -4px; filter: blur(16px); }
.price-card:hover::before { opacity: 1; }
.price-card:hover::after { opacity: 0.5; }

/* ---------- Stats ---------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.stat { padding: 34px 28px; }
.stat + .stat { border-left: 1px solid var(--line-strong); }

.stat .stat-value {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(105deg, #f0602f, var(--c3) 50%, var(--c4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

.stat .stat-note {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- Comparison cards ---------- */

.compare-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 1000px) { .compare-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .compare-cards { grid-template-columns: 1fr; } }

.compare-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1.4;
}

.compare-figure {
  display: block;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.compare-cap { display: block; font-size: 0.88rem; color: var(--ink-soft); margin-top: 6px; }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.compare-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.compare-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
}

.compare-list li.no::before { content: "\2715"; background: var(--line); color: var(--ink-soft); }
.compare-list li.mid::before { content: "\223C"; font-size: 0.8rem; background: var(--line); color: var(--ink-soft); }
.compare-list li.yes::before { content: "\2713"; background: var(--accent); color: #fff; }

.compare-card.compare-hero { border: 2px solid var(--ink); }
.compare-card.compare-hero h4 { color: var(--ink); }
.compare-card.compare-hero .compare-figure {
  background: linear-gradient(105deg, #f0602f, var(--c3) 50%, var(--c4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare-card.compare-hero li { color: var(--ink); font-weight: 600; }

/* ---------- Pills ---------- */

.industry-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.logo-pill {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.logo-pill:hover { border-color: var(--ink); color: var(--ink); }
.pill-accent { border-color: var(--accent); color: var(--accent); }

/* ---------- Gradient word ---------- */

.gradient-word {
  background: var(--spectrum);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: spectrum-slide 8s linear infinite;
  padding-right: 0.06em;
  margin-right: -0.06em;
}

/* ---------- Section head ---------- */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Method step ---------- */

.method-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 6px 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  align-items: start;
}

.method-row .method-num { grid-row: 1 / span 2; align-self: center; }
.method-row p { grid-column: 2; color: var(--ink-soft); margin: 0; }
.method-row h3 { align-self: end; font-size: 1.35rem; }

.method-num {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--line);
  transition: color 0.25s ease;
}

.method-row:hover .method-num,
.method-row.is-active .method-num {
  background: var(--spectrum);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: spectrum-slide 5s linear infinite;
}

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); counter-reset: faq-q; }
.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 600;
  font-size: 1.12rem;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
}

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

.faq summary::before {
  counter-increment: faq-q;
  content: counter(faq-q, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-right: 18px;
}

.faq summary::after { content: "+"; color: var(--ink-faint); font-weight: 400; justify-self: end; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary::before { color: var(--accent); }
.faq details p { padding: 0 0 24px; color: var(--ink-soft); max-width: 44em; margin: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(60vw 42vw at 84% -6%, rgba(255, 128, 87, 0.16), transparent 62%),
    radial-gradient(34vw 30vw at 70% 12%, rgba(255, 212, 94, 0.07), transparent 60%),
    radial-gradient(48vw 38vw at 4% 100%, rgba(229, 83, 123, 0.14), transparent 64%),
    radial-gradient(80vw 60vw at 50% 135%, rgba(70, 64, 110, 0.55), transparent 74%),
    var(--bg-dark);
  color: var(--bg);
  padding: clamp(56px, 8vw, 100px) clamp(28px, 6vw, 80px);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 12em;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.cta-band .lede {
  color: #b4b1a6;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 38em;
  margin: 0 0 2.2rem;
}

.cta-band .btn { background: var(--bg); border-color: var(--bg); color: var(--ink); }
.cta-band .btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg); }
.cta-band .btn-outline { background: transparent; color: var(--bg); border-color: var(--line-dark); }
.cta-band .btn-outline:hover { color: var(--accent-on-dark); border-color: var(--accent-on-dark); }

/* ---------- Promise strip ---------- */

.promises {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px 40px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.promises li {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.promises li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 32% 30%, var(--c1) 0%, var(--c2) 55%, var(--c3) 100%);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .gradient-word { background: none; color: var(--ink); }
  .method-row.is-active .method-num { background: none; color: var(--accent); }
}



/* ---------- Page shell ---------- */
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; }
.hova:hover { color: var(--ink) !important; }
.svc-hover:hover .arrow-link { color: var(--accent); }
.svc-hover:hover { transform: translateY(-5px); border-color: var(--c2) !important; box-shadow: 0 22px 48px -20px rgba(229,83,123,0.38), 0 10px 30px -12px rgba(255,128,87,0.32); }

/* design-canvas wrapper reset (index) */
.dv-turn { padding: 0 !important; }
.dv-opts, .dv-opt { display: block !important; }
.dv-card { width: auto !important; max-width: none !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; overflow: visible !important; background: var(--bg); }

/* ---------- Animations ---------- */
@keyframes msgIn { from { opacity: 0; transform: translateY(10px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes dotPulse { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
@keyframes marquee { to { transform: translateX(calc(-50% - 7px)); } }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- iMessage chat (index hero) ---------- */
.chat-ts { text-align: center; font-size: 11.5px; font-weight: 600; color: #8E8E93; margin-bottom: 16px; }
.chat-thread { display: flex; flex-direction: column; gap: 8px; transition: opacity .5s ease, transform .5s ease; }
.chat-thread.out { opacity: 0; transform: translateY(-10px); }
.msg { max-width: 74%; padding: 12px 17px; font-size: 15.5px; font-weight: 500; line-height: 1.45; opacity: 0; animation: msgIn .3s cubic-bezier(.3,1.15,.4,1) forwards; }
.msg.sent { align-self: flex-end; background: var(--accent); border-radius: 18px 18px 4px 18px; color: #FAF9F6; transform-origin: 100% 100%; }
.msg.recv { align-self: flex-start; background: #E9E9EB; border-radius: 18px 18px 18px 4px; color: #111111; transform-origin: 0% 100%; }
.msg-lead { margin: 0 0 10px; font-size: 15.5px; font-weight: 500; line-height: 1.45; color: #111111; }
.msg-list { display: flex; flex-direction: column; gap: 7px; }
.msg-list > div { display: flex; gap: 9px; align-items: baseline; }
.msg-list span:first-child { color: var(--accent); font-weight: 800; }
.msg-list span:last-child { font-size: 14px; font-weight: 500; color: #111111; }
.chat-read { align-self: flex-end; font-size: 10.5px; font-weight: 600; color: #8E8E93; margin: 2px 6px 0 0; opacity: 0; animation: fadeIn .4s ease forwards; }
.chat-typing { align-self: flex-start; background: #E9E9EB; border-radius: 18px 18px 18px 4px; padding: 15px 18px; display: flex; gap: 5px; align-items: center; margin-top: 4px; opacity: 0; transform-origin: 0% 100%; animation: msgIn .3s cubic-bezier(.3,1.15,.4,1) forwards; }
.chat-typing span { width: 7px; height: 7px; border-radius: 999px; background: #8E8E93; animation: dotPulse 1.2s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }

/* ---------- Testimonial rotator (index FAQ rail) ---------- */
.t-slide { grid-row-start: 1; grid-column-start: 1; opacity: 0; visibility: hidden; }
.t-slide.on { opacity: 1; visibility: visible; animation: fadeIn .6s ease; }
.t-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--line-strong); transition: background .3s ease; }
.t-dot.on { background: var(--accent); }

/* ---------- FAQ open animation ---------- */
.faq details { interpolate-size: allow-keywords; }
.faq details::details-content { height: 0; overflow: clip; transition: height .35s ease, content-visibility .35s allow-discrete; }
.faq details[open]::details-content { height: auto; }
.faq details p { animation: faqOpen .4s cubic-bezier(.3,.9,.4,1); }
.faq summary::before, .faq summary::after { transition: color .25s ease; }

/* ---------- Responsive: index ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr !important; }
  .svc-grid > div { grid-column: auto !important; }
}
/* ---------- Hero entrance (index) ---------- */
.hl { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hl-i { display: block; transform: translateY(112%); animation: heroLine 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards; }
.hl + .hl .hl-i { animation-delay: 0.18s; }
@keyframes heroLine { to { transform: translateY(0); } }
.hero-in { opacity: 0; transform: translateY(14px); animation: heroRise 0.7s ease 0.5s forwards; }
.hero-in-2 { animation-delay: 0.65s; }
.hero-in-3 { animation-delay: 0.8s; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }
.hero-in-fade { opacity: 0; animation: heroFade 0.9s ease 0.95s forwards; }
@keyframes heroFade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hl-i { transform: none; animation: none; }
  .hero-in, .hero-in-fade { opacity: 1; transform: none; animation: none; }
}

/* ---------- Message form (dark CTA band) ---------- */
.msg-form { display: none; max-width: 560px; margin-top: 26px; }
.msg-form.open { display: block; }
.msg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.msg-form input[type="text"], .msg-form input[type="email"], .msg-form textarea {
  width: 100%; box-sizing: border-box; padding: 14px 16px; font-family: var(--font);
  font-size: 15px; font-weight: 500; color: var(--bg); background: rgba(250,249,246,0.07);
  border: 1px solid var(--line-dark); border-radius: var(--radius-sm); outline: none;
  transition: border-color 0.2s ease;
}
.msg-form input:focus, .msg-form textarea:focus { border-color: var(--accent-on-dark); }
.msg-form input::placeholder, .msg-form textarea::placeholder { color: rgba(250,249,246,0.45); }
.msg-form textarea { margin-top: 12px; resize: vertical; min-height: 110px; }
.msg-form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
.msg-form-foot span { font-size: 13px; font-weight: 500; color: rgba(250,249,246,0.55); }
@media (max-width: 560px) { .msg-form-row { grid-template-columns: 1fr; } }

/* Light variant (booking card) */
.msg-form-light { margin-top: 16px; max-width: none; }
.msg-form-light input[type="text"], .msg-form-light input[type="email"], .msg-form-light textarea {
  color: var(--ink); background: var(--bg); border-color: var(--line-strong);
}
.msg-form-light input:focus, .msg-form-light textarea:focus { border-color: var(--accent); }
.msg-form-light input::placeholder, .msg-form-light textarea::placeholder { color: var(--ink-faint); }
.msg-form-light .msg-form-foot span { color: var(--ink-faint); }

/* ---------- Mobile menu (details/summary, no JS needed) ---------- */
.m-menu { display: none; position: relative; }
.m-menu summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); }
.m-menu summary::-webkit-details-marker { display: none; }
.m-menu[open] summary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.m-menu-panel { position: absolute; right: 0; top: calc(100% + 10px); background: #ffffff; border: 1px solid var(--line-strong); border-radius: 16px; box-shadow: 0 6px 16px -6px rgba(22,22,19,0.2), 0 24px 48px -16px rgba(22,22,19,0.35); padding: 8px; min-width: 200px; display: flex; flex-direction: column; z-index: 500; }
.m-menu-panel a { padding: 12px 16px; border-radius: 10px; font-weight: 600; font-size: 15px; color: var(--ink); text-decoration: none; }
.m-menu-panel a:hover, .m-menu-panel a:active { background: var(--bg); }

@media (max-width: 700px) {
  /* Mobile: no sticky header, no horizontal scrollers — everything stacks. */
  .site-nav { position: relative !important; z-index: 400; }
  .site-nav > div { background: #ffffff !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .nav-links { display: none !important; }
  .m-menu { display: block; margin-left: 12px; }
  .site-nav > div { justify-content: flex-start !important; }
  .site-nav > div > .btn, .site-nav > div > .nav-note { margin-left: auto; }
  .svc-grid { display: flex !important; flex-direction: column; gap: 14px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta a { width: 100%; box-sizing: border-box; text-align: center; }
  .studio-grid > div:first-child { max-width: 140px; }

  /* Compact stat strip (40%+ / 3x / 24/7) above Our Services */
  .chat-split { gap: 28px !important; }
  .chat-stats { flex-direction: row !important; gap: 10px !important; }
  .chat-stats > div { flex: 1; border-bottom: none !important; padding-bottom: 0 !important; text-align: center; }
  .chat-stats > div > div:first-child { font-size: 26px !important; -webkit-text-stroke-width: 1.2px !important; }
  .chat-stats > div > div:nth-child(2) { font-size: 12px !important; margin: 6px 0 0 !important; }
  .chat-stats > div > p { display: none; }
}
@media (max-width: 960px) {
  .chat-split { grid-template-columns: 1fr !important; }
  .faq-split { grid-template-columns: 1fr !important; }
  .faq-split > div[style*="sticky"] { position: static !important; }
  .book-split { grid-template-columns: 1fr !important; }
  /* Booking page: Calendly card first on mobile */
  .book-split > div:first-child { order: 2; }
}
@media (max-width: 900px) {
  .studio-grid { grid-template-columns: 1fr !important; max-width: 480px; margin: 0 auto; }
}

/* ---------- Service animation embed (Option C) ---------- */
.svc-media-split { display: grid; grid-template-columns: 440px 1fr; gap: 40px; margin-top: 32px; align-items: center; }
.anim-embed { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--bg); border: 1px solid var(--line); }
/* iframe is 44px taller than the frame so the player's control bar is clipped off */
.anim-embed iframe { position: absolute; left: 0; top: 0; width: 100%; height: calc(100% + 44px); border: 0; pointer-events: none; }
.anim-link { position: absolute; inset: 0; z-index: 2; }
@media (max-width: 1000px) { .svc-media-split { grid-template-columns: 380px 1fr; gap: 24px; } }

/* ---------- Responsive: service pages ---------- */
@media (max-width: 960px) { .svc-hero, .svc-proof { grid-template-columns: 1fr !important; } }
@media (max-width: 700px) {
  .svc-media-split { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
  .svc-media-split .svc-tiles { margin-top: 0 !important; }
  .svc-tiles { display: flex !important; flex-direction: column; gap: 10px; margin-top: 20px !important; }
  .svc-tiles > div { padding: 18px 20px !important; }
  .svc-cta { flex-direction: column; align-items: stretch; }
  .svc-cta a { width: 100%; box-sizing: border-box; text-align: center; }
  /* Compact service pages on mobile */
  .svc-sec { padding-top: 22px !important; padding-bottom: 30px !important; }
  .svc-sec2 { padding-bottom: 36px !important; }
  .svc-sec3 { padding-bottom: 44px !important; }
  .svc-hero { gap: 22px !important; margin-top: 16px !important; }
  .svc-hero h1 { font-size: 32px !important; margin-top: 12px !important; }
  .svc-hero > div:last-child { padding: 20px 22px !important; }
  .svc-proof { gap: 12px !important; }
  .svc-proof > div { padding: 20px 22px !important; }
}
