/* ShootCal marketing — self-contained stylesheet for the prerendered static
   homepage AND the Puck editor preview. Values measured from the LIVE WP site
   (the elegance pass that aligned marketing + Galleries): white page, liquid-
   glass light nav, full-bleed dark-graphite hero band, radial sunset bands,
   dark CTA band, #222a35 footer. No external fonts, no JS required. */

:root {
  /* GeneratePress globals from the live site */
  --ink: #2b3440; --ink-soft: #4a5568; --faint: #6f7885;
  --graphite: #2b3440; --graphite-2: #222a35;
  --coral: #ec8a5c; --coral-deep: #bf5324;
  --cream: #f6efe8;
  --card: #ffffff; --line: #e6e2dd;
  --radius: 16px;
  --max: 1400px;
}

/* Self-hosted fonts (the live site's own faces — no external requests). */
@font-face {
  font-family: 'Nunito Sans'; font-style: normal; font-weight: 200 1000;
  font-display: swap; src: url('/img/fonts/nunito-sans-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed'; font-style: normal; font-weight: 700;
  font-display: swap; src: url('/img/fonts/barlow-semi-condensed-700.woff2') format('woff2');
}
:root {
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Barlow Semi Condensed', 'Arial Narrow', var(--font-body);
  --font-elegant: 'Avenir Next', 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0; color: var(--ink);
  font: 17px/1.6 var(--font-body);
  background: #fff;
}
h1, h2, h3 { font-family: var(--font-heading); }

/* Elegant editorial variant (the galleries page look): lighter Avenir Next
   throughout, softer heading weights. */
body.mk-elegant, body.mk-elegant h1, body.mk-elegant h2, body.mk-elegant h3, body.mk-elegant h4 {
  font-family: var(--font-elegant);
}
/* The WP galleries page runs its headings LIGHT (weight 400) — that's the
   entire "elegant" read. High-specificity so section h2 weights don't win. */
body.mk-elegant h1, body.mk-elegant .mk-inner h1,
body.mk-elegant .mk-pagehero h1 { font-weight: 400; letter-spacing: -0.02em; }
body.mk-elegant h2, body.mk-elegant .mk-inner h2 { font-weight: 400; letter-spacing: -0.02em; }
body.mk-elegant h3 { font-weight: 500; letter-spacing: -0.01em; }
a { color: var(--coral-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.015em; }
img { max-width: 100%; }

/* ---- full-bleed band + centered inner (the WP .sc-inner pattern) ---- */
.mk-band { width: 100%; }
/* Section rhythm: the WP site runs 72px section padding at desktop. */
.mk-inner { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 6vw, 68px) 24px; }
.mk-inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 22px; font-weight: 700; }

/* Sunset band — the site's exact recipe: sky glow top-left, peach glow
   bottom-right, over the 135deg sky→warm-white base. Full bleed, no radius. */
.mk-band--sunset {
  background:
    radial-gradient(1200px 800px at 8% 4%, rgba(169, 198, 230, .55), rgba(0, 0, 0, 0) 55%),
    radial-gradient(1100px 900px at 96% 100%, rgba(244, 200, 166, .6), rgba(0, 0, 0, 0) 55%),
    linear-gradient(135deg, #eef4fb 0%, #fdf3ec 100%);
}
/* Dark band — the site's final-CTA gradient. */
.mk-band--dark {
  background: linear-gradient(155deg, #313d4d 0%, #1e2530 100%);
  color: #fff;
}

/* ---- liquid-glass light nav (measured: 112deg white/sky glass + blur) ---- */
.mk-nav-shell {
  position: sticky; top: 0; z-index: 30;
  transition: transform .24s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}
.mk-nav-shell--hidden { transform: translateY(calc(-100% - 2px)); }
.mk-nav-shell--hidden:focus-within { transform: translateY(0); }
html.mk-nav-hidden .mk-subnav { top: 0; }
@media (prefers-reduced-motion: reduce) { .mk-nav-shell { transition: none; } }
.mk-nav {
  font-family: var(--font-body);
  padding: 12px 26px;
  background: linear-gradient(112deg, rgba(255, 255, 255, .58) 0%, rgba(221, 239, 254, .66) 46%, rgba(190, 219, 246, .56) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  backdrop-filter: blur(24px) saturate(1.7);
  border-bottom: 1px solid rgba(91, 139, 180, .22);
  position: relative;
}
/* Contained width (the site's old look): bar is full-bleed glass, content
   sits in the page container with the links centered between logo and CTA. */
.mk-nav-inner {
  max-width: var(--max); margin: 0 auto; position: relative;
  display: flex; align-items: center; gap: 26px;
}
.mk-nav-inner .mk-links { margin: 0 auto; justify-content: center; }
.mk-brand { display: flex; align-items: center; gap: 10px; }
.mk-brand img { display: block; height: 36px; width: auto; }
.mk-brand-suffix { font-family: var(--font-elegant); font-size: 1.15rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .01em; white-space: nowrap; }
/* Menu items stay typographic at rest; a quiet glass wash appears on hover
   (the WP desktop-menu treatment). */
.mk-links { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.mk-links a {
  font-family: var(--font-body);
  color: var(--ink-soft); font-weight: 600; font-size: .93rem;
  padding: 9px 12px; border-radius: 7px; line-height: 1.2;
  transition: background-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.mk-links a:hover, .mk-links a:focus-visible {
  color: var(--ink); text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(171, 207, 237, .20));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 4px 12px rgba(48, 82, 111, .07);
}
.mk-cta { background: var(--coral); color: #fff !important;
  padding: 9px 18px; border-radius: 8px; font-weight: 700; font-size: .93rem;
  line-height: 1.3; transition: background .15s ease;
}
.mk-cta:hover { background: var(--coral-deep); text-decoration: none; }

/* ---- hero: full-bleed dark graphite band (measured 160deg gradient) ---- */
.mk-band--hero {
  background: linear-gradient(160deg, #2f3a47 0%, #232b35 55%, #1a212b 100%);
  color: #fff;
}
.mk-hero { max-width: 1360px; text-align: center; padding-top: 96px; padding-bottom: 56px; }
.mk-tagline { color: var(--coral); font-weight: 700; letter-spacing: .02em; margin: 0 0 10px; }
.mk-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); margin: 0 auto 20px; max-width: 24ch; font-weight: 700; color: #fff; }
.mk-intro { max-width: 780px; margin: 0 auto 26px; color: rgba(255, 255, 255, .84); }
.mk-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 0 0 14px; }
.mk-hero .mk-price-note { color: rgba(255, 255, 255, .55); }
.mk-hero-links {
  display: grid; gap: 8px; max-width: 620px; margin: 16px auto 0;
  font-weight: 650; text-align: left;
}
.mk-hero-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 14px; border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px; color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.mk-hero-links a::after { content: '\2192'; flex: 0 0 auto; color: var(--coral); font-size: 1.1rem; }
.mk-hero-links a:nth-child(2) {
  border-color: rgba(236, 138, 92, .28);
  background: linear-gradient(135deg, rgba(236, 138, 92, .10), rgba(255, 255, 255, .045));
}
.mk-hero-links a:hover {
  color: #fff; text-decoration: none; border-color: rgba(255, 255, 255, .25);
  background-color: rgba(255, 255, 255, .09); transform: translateY(-1px);
}
.mk-hero-shot { display: block; max-width: min(920px, 100%); margin: 40px auto 0; border-radius: 14px; box-shadow: 0 24px 60px rgba(0, 0, 0, .35); }

/* Split hero (the WP layout): device shot | copy on desktop, stacking under
   1024px exactly like the WP grid. Copy left-aligns in its column. */
.mk-hero--split .mk-hero-shot { margin: 0; max-width: 100%; }
.mk-hero-media { min-width: 0; }
.mk-hero-copy { min-width: 0; }
@media (min-width: 1025px) {
  .mk-hero--split {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px;
    align-items: center; text-align: left;
    padding-top: 72px; padding-bottom: 72px;
  }
  .mk-hero--split h1 { margin: 0 0 20px; max-width: none; }
  .mk-hero--split .mk-intro { margin: 0 0 26px; max-width: none; }
  .mk-hero--split .mk-hero-ctas { justify-content: flex-start; }
  .mk-hero--split .mk-hero-links { margin-left: 0; margin-right: 0; }
}
@media (max-width: 1024px) {
  .mk-hero--split { padding-top: 56px; }
  .mk-hero--split .mk-hero-media { margin-bottom: 34px; }
  .mk-hero--split .mk-hero-shot { margin: 0 auto; }
}

/* ---- buttons (the WP product-aware system: dimensional app controls +
   restrained black-and-white editorial controls, all with hover motion) ---- */
.mk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: .76rem 1.4rem; border: 1px solid transparent;
  border-radius: 14px; font-size: 1rem; font-weight: 700; line-height: 1.15;
  transition: background-color .2s ease, border-color .2s ease,
    color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mk-btn:hover { text-decoration: none; }
.mk-btn:focus-visible { outline: 3px solid rgba(236, 138, 92, .5); outline-offset: 3px; }
/* Coral primary: the app's own gradient, lifting on hover. */
.mk-btn--coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff; border-color: #cc7146;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 8px 20px rgba(218, 103, 55, .22);
}
.mk-btn--coral:hover {
  background: linear-gradient(135deg, var(--coral-deep), #d85f2e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26), 0 11px 24px rgba(190, 77, 34, .27);
  transform: translateY(-1px);
}
/* Graphite (App Store on the dark hero): crisp edge + inner highlight. */
.mk-btn--graphite {
  background: #2b3440; color: #fff; border-color: rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 8px 20px rgba(0, 0, 0, .18);
}
.mk-btn--graphite:hover {
  background: #1f2730;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 24px rgba(0, 0, 0, .22);
  transform: translateY(-1px);
}
.mk-inline-cta { margin-top: 18px; }
.mk-btn--white { background: #fff; color: #3c4043; border-color: #e6e2dd; }
.mk-btn--white:hover { background: #faf7f3; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(43, 52, 64, .08); }
.mk-btn--ghost { background: rgba(255, 255, 255, .035); border-color: rgba(255, 255, 255, .72); color: #fff; }
.mk-btn--ghost:hover { background: #fff; color: #171717; border-color: #fff; }
/* Editorial (galleries): square-cut, elegant face, invert on hover. */
.mk-btn--ink, .mk-btn--ink-ghost {
  border-radius: 4px; font-family: var(--font-elegant);
  font-weight: 500; letter-spacing: .015em; box-shadow: none;
}
.mk-btn--ink { background: #171717; color: #fff; border-color: #171717; }
.mk-btn--ink:hover { background: #fff; color: #171717; }
.mk-btn--ink-ghost { background: transparent; color: #171717; border-color: #171717; }
.mk-btn--ink-ghost:hover { background: #171717; color: #fff; }
.mk-band--dark .mk-btn--ink-ghost, .mk-band--hero .mk-btn--ink-ghost {
  color: #fff; border-color: rgba(255, 255, 255, .86);
}
.mk-band--dark .mk-btn--ink-ghost:hover, .mk-band--hero .mk-btn--ink-ghost:hover {
  background: #fff; color: #171717; border-color: #fff;
}
.mk-price-note { color: var(--faint); font-size: .9rem; margin: 0 0 8px; }

/* ---- section furniture ---- */
.mk-eyebrow { color: var(--coral-deep); font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; margin: 0 0 6px; }
.mk-subhead { font-size: 1.02rem; color: var(--ink-soft); font-weight: 700; margin: -8px 0 16px; }
.mk-section-intro { max-width: 800px; color: var(--ink-soft); margin: -8px 0 22px; }

/* workflow */
.mk-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mk-steps li {
  background: var(--card); border: 1px solid rgba(230, 226, 221, .65); border-radius: var(--radius);
  display: grid; grid-template-columns: 32px minmax(0, 1fr); align-items: start; gap: 12px;
  padding: 18px; color: var(--ink-soft); font-size: .98rem;
  box-shadow: 0 1px 2px rgba(20, 25, 32, .04), 0 10px 28px rgba(43, 52, 64, .10);
}
.mk-step-n {
  width: 32px; height: 32px;
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(160deg, #2f3a47 0%, #1a212b 100%);
  color: #fff; font-weight: 800; font-size: .9rem;
}
.mk-step-copy { min-width: 0; padding-top: 1px; }
@media (max-width: 900px) { .mk-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .mk-steps { grid-template-columns: 1fr; } }

/* feature grids */
.mk-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 24px; }
.mk-feature-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mk-feature-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1050px) {
  .mk-feature-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .mk-feature-grid--2, .mk-feature-grid--3 { grid-template-columns: 1fr; }
}
.mk-feature {
  background: var(--card); border: 1px solid rgba(230, 226, 221, .65); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: 0 1px 2px rgba(20, 25, 32, .04), 0 10px 28px rgba(43, 52, 64, .10);
}
.mk-feature h3 { margin: 0 0 8px; font-size: 1.05rem; }
.mk-feature p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.mk-new {
  margin-left: 8px; vertical-align: 2px; font-size: .66rem; font-weight: 800; letter-spacing: .06em;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff; padding: 2px 8px; border-radius: 99px; text-transform: uppercase;
}

/* story: the WP centered dark card floating on the white page. NOTE: this
   div doubles as the section container (mk-inner mk-story), so the section
   rhythm must live on its MARGIN — a small margin here removes the band
   spacing entirely (bit us: card sat flush against the next section). */
.mk-story {
  max-width: 900px; width: calc(100% - 48px);
  margin: clamp(48px, 6vw, 68px) auto;
  background: linear-gradient(155deg, #313d4d 0%, #1e2530 100%); color: #fff;
  border-radius: 18px; padding: 44px 40px;
  box-shadow: 0 14px 40px rgba(43, 52, 64, .22);
}
@media (max-width: 600px) { .mk-story { padding: 30px 24px; } }
.mk-story h2 { color: #fff; }
.mk-story p { color: rgba(255, 255, 255, .8); }
.mk-story a { color: var(--coral); }
.mk-story .mk-attr { color: #fff !important; }
.mk-prose p { color: var(--ink-soft); max-width: 800px; }
.mk-prose--link-only { padding-top: 18px; padding-bottom: 18px; }
.mk-prose--link-only p { margin: 0; }
.mk-band--link-only + .mk-band .mk-legal { padding-top: 24px; }
.mk-attr { font-weight: 700; color: var(--ink) !important; }
.mk-review { text-align: center; }
.mk-review p { max-width: 640px; margin: 0 auto; color: var(--ink-soft); }
.mk-shot {
  display: block; max-width: 100%; margin: 6px 0 22px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(20, 25, 32, .14);
}
.mk-shot--floating {
  margin: 12px auto 28px;
  border-radius: 0;
  box-shadow: none;
}

/* faq — the WP details cards: white, rounded, soft-shadowed */
.mk-faq h3 { color: var(--ink-soft); font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin: 18px 0 8px; }
.mk-faq details {
  background: var(--card); border: 1px solid rgba(230, 226, 221, .78); border-radius: 14px;
  padding: 0 20px; margin: 0 0 12px; box-shadow: 0 5px 20px rgba(43, 52, 64, .07);
}
.mk-faq summary { cursor: pointer; font-weight: 650; line-height: 1.35; padding: 17px 0; }
.mk-faq summary:hover { color: var(--coral-deep); }
.mk-faq details p { color: var(--ink-soft); margin: 0 0 16px; }
.mk-faq-foot { font-weight: 600; margin-top: 18px; }

/* dark CTA band content */
.mk-ctaband { text-align: center; padding-top: 56px; padding-bottom: 56px; }
.mk-ctaband h2 { color: #fff; }
.mk-ctaband > p { color: rgba(255, 255, 255, .82); margin: 0 0 20px; }
.mk-ctaband .mk-price-note { color: rgba(255, 255, 255, .6); }
.mk-btn--ondark { background: #fff; border-color: #fff; color: var(--graphite); }
.mk-btn--ondark:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0, 0, 0, .22); }

/* footer — the site's solid dark slab with cream links */
.mk-footer { background: #222a35; color: var(--cream); padding: 40px 22px 30px; }
.mk-foot-cols { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; }
.mk-foot-cols h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(246, 239, 232, .55); margin: 0 0 10px; }
.mk-foot-cols a { display: block; color: var(--cream); padding: 3px 0; font-size: .95rem; }
.mk-copy { max-width: var(--max); margin: 26px auto 0; color: rgba(246, 239, 232, .55); font-size: .85rem; }
.mk-copy a { color: rgba(246, 239, 232, .75); }

@media (max-width: 700px) {
  .mk-links { display: none; }
  .mk-hero { padding-top: 48px; }
}

/* ---- CSS-only hamburger (<=1050px, matching the WP breakpoint) ---- */
.mk-menu-check, .mk-burger, .mk-drawer { display: none; }
@media (max-width: 1050px) {
  .mk-links, .mk-nav-inner > .mk-cta { display: none; }
  .mk-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 40px; height: 40px; padding: 8px; cursor: pointer;
    border: 1px solid transparent; border-radius: 12px;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .mk-burger span { display: block; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .18s, opacity .18s; }
  .mk-menu-check:checked ~ .mk-nav .mk-burger {
    background: rgba(255, 255, 255, .30); border-color: rgba(91, 139, 180, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62), 0 6px 18px rgba(48, 82, 111, .08);
  }
  .mk-menu-check:checked ~ .mk-nav .mk-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .mk-menu-check:checked ~ .mk-nav .mk-burger span:nth-child(2) { opacity: 0; }
  .mk-menu-check:checked ~ .mk-nav .mk-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .mk-drawer {
    font-family: var(--font-body);
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 2px; padding: 10px max(20px, calc((100vw - var(--max)) / 2 + 26px)) 18px;
    background: rgba(239, 246, 252, .98);
    -webkit-backdrop-filter: blur(28px) saturate(1.65);
    backdrop-filter: blur(28px) saturate(1.65);
    border-top: 1px solid rgba(255, 255, 255, .48);
    border-bottom: 1px solid rgba(91, 139, 180, .24);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 20px 44px rgba(23, 34, 51, .18);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px); transform-origin: top;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .mk-drawer {
      background: linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(210, 233, 251, .74));
    }
  }
  .mk-menu-check:checked ~ .mk-drawer {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
    transition-delay: 0s;
  }
  .mk-drawer a { font-family: var(--font-body); padding: 11px 12px; font-weight: 600; color: var(--ink); border-radius: 10px; }
  .mk-drawer a:hover { background: rgba(169, 198, 230, .18); text-decoration: none; }
  .mk-drawer .mk-cta--drawer {
    margin: 8px 0 0; padding: 12px 18px; text-align: center; color: #fff;
    box-shadow: 0 9px 22px rgba(190, 92, 53, .16);
  }
}

/* ---- comparison / pricing tables ---- */
/* Narrow-viewport column picker: hidden radios drive per-table generated CSS
   (rendered by CompareTable) that keeps label + ShootCal + one picked column
   in view instead of forcing a sideways scroll. Zero JS. */
.mk-cmp { position: relative; }
.mk-cmp > input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.mk-cmp-picker {
  display: none; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 0 0 14px;
}
.mk-cmp-picker span { color: var(--faint); font-size: .85rem; font-weight: 600; margin-right: 2px; }
.mk-cmp-picker label {
  padding: 7px 13px; border: 1px solid rgba(43, 52, 64, .25); border-radius: 99px;
  font-size: .85rem; font-weight: 600; color: var(--ink-soft); cursor: pointer;
  background: #fff; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.mk-cmp-picker label:hover { border-color: var(--ink); color: var(--ink); }
.mk-cmp > input:focus-visible ~ .mk-cmp-picker { outline: 2px solid rgba(236, 138, 92, .6); outline-offset: 3px; border-radius: 8px; }
@media (max-width: 1024px) {
  /* Balance the three visible columns: without fixed layout the ShootCal
     column's long copy starves the picked competitor down to a sliver. */
  .mk-cmp .mk-table { table-layout: fixed; }
  .mk-cmp .mk-table th:first-child { width: 27%; }
  .mk-cmp .mk-table th.hi { width: 41%; }
  .mk-cmp .mk-table th, .mk-cmp .mk-table td { padding: 10px 10px; }
  .mk-cmp .mk-table td { overflow-wrap: anywhere; }
  .mk-cmp .mk-table th { overflow-wrap: break-word; }
}
.mk-table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.mk-table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 640px; }
.mk-table th, .mk-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.mk-table thead th { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); background: #fbf9f6; }
.mk-table tbody tr:last-child td { border-bottom: 0; }
.mk-table td:first-child { font-weight: 600; }
.mk-table .hi { background: rgba(236, 138, 92, .08); }
.mk-table-note { color: var(--faint); font-size: .85rem; margin-top: 12px; }

/* ---- legal / long-form ---- */
.mk-legal { max-width: 820px; }
.mk-legal h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 20px; }
.mk-legal h2 { font-size: 1.25rem; margin: 26px 0 10px; }
.mk-legal h3 { font-size: 1.05rem; margin: 20px 0 8px; }
.mk-legal p, .mk-legal li { color: var(--ink-soft); }
.mk-legal li { margin: 0 0 6px 20px; }

/* ---- embed (the WP availability-calendar frame) ---- */
.mk-embed { display: block; width: 100%; border: 0; border-radius: 16px; background: #fff; box-shadow: 0 10px 40px rgba(20, 25, 32, .12); }

/* ---- interior page hero ---- */
.mk-pagehero { text-align: center; padding-top: 64px; }
.mk-breadcrumb { display: flex; justify-content: center; margin: 0 0 16px; }
.mk-breadcrumb ol {
  display: inline-flex; align-items: center; gap: 8px; list-style: none;
  margin: 0; padding: 7px 13px; border: 1px solid rgba(43, 52, 64, .12);
  border-radius: 999px; background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 8px 24px rgba(43, 52, 64, .08);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  color: var(--ink-soft); font-size: .82rem; font-weight: 650; line-height: 1.2;
}
.mk-breadcrumb li + li::before { content: '\203A'; margin-right: 8px; color: var(--faint); }
.mk-breadcrumb a { color: inherit; }
.mk-breadcrumb a:hover { color: var(--ink); text-decoration: none; }
.mk-pagehero--dark .mk-breadcrumb ol {
  border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .78); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 28px rgba(0, 0, 0, .14);
}
.mk-pagehero--dark .mk-breadcrumb a:hover { color: #fff; }
.mk-pagehero h1 { font-size: clamp(1.8rem, 3.8vw, 2.5rem); margin: 0 auto 18px; max-width: 26ch; }
.mk-pagehero .mk-intro { color: var(--ink-soft); }
.mk-pagehero--dark h1 { color: #fff; }
.mk-pagehero--dark .mk-intro { color: rgba(255, 255, 255, .84); }
.mk-pagehero--dark .mk-eyebrow { color: var(--coral); }
/* Split page hero: copy | image on desktop. Tall screenshots crop to a sane
   height with object-fit instead of towering over the band. */
.mk-pagehero--split .mk-hero-shot { margin: 34px auto 0; max-height: 480px; width: auto; max-width: 100%; object-fit: cover; object-position: center top; }
@media (min-width: 1025px) {
  .mk-pagehero--split {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
    align-items: center; text-align: left;
    padding-top: 72px; padding-bottom: 72px;
  }
  .mk-pagehero--split .mk-breadcrumb { justify-content: flex-start; }
  .mk-pagehero--split h1 { margin: 0 0 18px; max-width: none; }
  .mk-pagehero--split .mk-intro { margin: 0; max-width: none; }
  .mk-pagehero--split .mk-hero-shot { margin: 0; max-height: 520px; }
}
@media (max-width: 1024px) {
  .mk-pagehero--split .mk-pagehero-ctas { justify-content: center; }
}

/* Full-width photo band with a real frosted-glass text card, matching the
   retired WordPress Galleries treatment while remaining editable in Puck. */
.mk-photo-glass {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 540px; padding: clamp(96px, 12vw, 180px) 22px;
  display: grid; align-items: center; background: #8b765d;
}
.mk-photo-glass-bg, .mk-photo-glass-shade {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.mk-photo-glass-bg { z-index: -2; display: block; object-fit: cover; object-position: 56% 30%; }
.mk-photo-glass-shade {
  z-index: -1; background: linear-gradient(135deg, rgba(255, 225, 204, .12), rgba(208, 226, 255, .12));
}
.mk-photo-glass-inner { width: 100%; padding: 0; }
.mk-photo-glass-card {
  max-width: 760px; margin: 0 auto; padding: 40px 48px; text-align: center;
  color: #fff; background: rgba(18, 18, 24, .28);
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 24px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .15);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}
.mk-photo-glass-card .mk-eyebrow { color: rgba(255, 255, 255, .86); margin-bottom: .5rem; }
.mk-photo-glass-card h2 { color: #fff; margin: 0 0 .55rem; }
.mk-photo-glass-card p { color: rgba(255, 255, 255, .88); margin: 0; line-height: 1.6; }
@media (max-width: 600px) {
  .mk-photo-glass { min-height: 460px; padding: 72px 16px; }
  .mk-photo-glass-card { padding: 28px 22px; border-radius: 20px; }
}

/* ---- docs channel ---- */
.mk-docs { display: flex; gap: 34px; max-width: var(--max); margin: 0 auto; padding: 34px 22px 60px; align-items: flex-start; }
/* Sidebar = its own scroll pane: capped to the viewport under the sticky nav
   and overflow-y:auto, so the ToC scrolls independently under the cursor
   instead of only after the article bottoms out (the classic tall-sticky
   trap on macOS). */
.mk-docs-side {
  flex: 0 0 240px; position: sticky; top: 76px;
  max-height: calc(100vh - 96px); overflow-y: auto;
  overscroll-behavior: contain; padding-bottom: 12px;
}
.mk-docs-home { display: block; font-weight: 800; margin-bottom: 12px; color: var(--ink); }
.mk-docs-side h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--faint); margin: 16px 0 6px; }
.mk-docs-side a { display: block; padding: 5px 8px; margin-left: -8px; border-radius: 8px; color: var(--ink-soft); font-size: .92rem; }
.mk-docs-side a.on { background: rgba(236, 138, 92, .12); color: var(--coral-deep); font-weight: 700; }
.mk-docs-side a:hover { text-decoration: none; background: rgba(169, 198, 230, .16); }
.mk-docs-body { flex: 1; min-width: 0; max-width: 760px; }
.mk-docs-body h1 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 0 0 14px; }
.mk-docs-intro { color: var(--ink-soft); }
.mk-docs-body h2 { font-size: 1.3rem; margin: 28px 0 10px; }
.mk-docs-body h3 { font-size: 1.08rem; margin: 20px 0 8px; }
.mk-docs-body p, .mk-docs-body li { color: var(--ink-soft); }
.mk-docs-body li { margin-bottom: 6px; }
.mk-docs-body code { background: #f1ece5; border-radius: 5px; padding: 1px 6px; font-size: .88em; }
.mk-docs-body pre { background: #f1ece5; border-radius: 10px; padding: 14px 16px; overflow-x: auto; }
.mk-docs-body img { border-radius: 12px; border: 1px solid var(--line); }
.mk-docs-body table { border-collapse: collapse; width: 100%; }
.mk-docs-body td, .mk-docs-body th { border: 1px solid var(--line); padding: 8px 10px; }
@media (max-width: 900px) {
  .mk-docs { flex-direction: column; }
  .mk-docs-side { position: static; flex: none; width: 100%; }
}

/* ---- feature-card icons (the site's inline Font Awesome set, ported) ---- */
.mk-fi {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(236, 138, 92, .14) 0%, rgba(169, 198, 230, .18) 100%);
}
.mk-fi-svg { width: 22px; height: 22px; fill: var(--coral-deep); }

/* ---- side-by-side columns (Puck slots on a CSS grid) ---- */
.mk-cols { display: grid; column-gap: 48px; row-gap: 34px; align-items: center; }
.mk-cols--50 { grid-template-columns: 1fr 1fr; }
.mk-cols--60 { grid-template-columns: 3fr 2fr; }
.mk-cols--40 { grid-template-columns: 2fr 3fr; }
.mk-cols--66 { grid-template-columns: 2fr 1fr; }
.mk-cols--33 { grid-template-columns: 1fr 2fr; }
.mk-col { min-width: 0; }
/* nested sections inside a column shed their own band padding */
.mk-col .mk-band { width: auto; }
.mk-col .mk-inner { padding: 0; max-width: none; }
@media (max-width: 900px) {
  .mk-cols--50, .mk-cols--60, .mk-cols--40, .mk-cols--66, .mk-cols--33 { grid-template-columns: 1fr; }
}

/* ---- palette primitives ---- */
.mk-pic { margin: 0; }
.mk-pic img { display: block; max-width: 100%; }
.mk-pic a { display: block; }
.mk-pic--frame img { border-radius: 14px; box-shadow: 0 14px 40px rgba(20, 25, 32, .14); }
.mk-pic figcaption { color: var(--faint); font-size: .85rem; margin-top: 10px; }
/* Device shells stay in CSS so screenshots remain reusable, editable assets. */
.mk-pic--phone { width: min(100%, 340px); margin-inline: auto; }
.mk-pic--phone img {
  width: 100%; background: #111;
  box-shadow: 0 2px 5px rgba(20, 25, 32, .14), 0 24px 54px rgba(20, 25, 32, .2);
}
.mk-pic--phone figcaption { text-align: center; margin-top: 16px; font-weight: 650; color: var(--ink-soft); }
.mk-pic--iphone img { border: 9px solid #111; border-radius: 42px; }
.mk-pic--pixel img { border: 8px solid #242424; border-radius: 32px; }
/* Liquid-glass shot card (the WP Apple-style screenshot frame). */
.mk-pic--glass {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 10px 10px 0; border: 1px solid rgba(255, 255, 255, .82); border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .94), 0 4px 12px rgba(43, 52, 64, .07), 0 20px 48px rgba(43, 52, 64, .13);
  -webkit-backdrop-filter: blur(18px) saturate(145%); backdrop-filter: blur(18px) saturate(145%);
}
.mk-pic--glass img { border-radius: 14px; width: 100%; }
.mk-pic--glass figcaption { margin: 0; padding: 13px 14px 15px; text-align: center; color: var(--ink-soft); font-size: .9rem; line-height: 1.45; }
.mk-pic--glass:not(:has(figcaption)) { padding-bottom: 10px; }
/* Gallery example card: clipped rounded card that lifts on hover (WP look).
   The transition sits on the link/figure so the caption travels with it. */
.mk-pic--card { overflow: hidden; border-radius: 18px; background: #fff;
  box-shadow: 0 1px 2px rgba(20, 25, 32, .04), 0 14px 36px rgba(43, 52, 64, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mk-pic--card img { width: 100%; }
.mk-pic--card:hover, .mk-pic--card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(20, 25, 32, .06), 0 18px 44px rgba(43, 52, 64, .18);
}
.mk-pic--card figcaption { padding: 0 14px 12px; }
.mk-quote { margin: 0; padding: 8px 0 8px 22px; border-left: 3px solid var(--coral); }
.mk-quote p { font-size: 1.15rem; color: var(--ink); margin: 0 0 8px; }
.mk-quote cite { color: var(--faint); font-style: normal; font-weight: 600; }
.mk-btnrow { display: flex; gap: 12px; flex-wrap: wrap; }
.mk-btnrow--center { justify-content: center; }

/* ---- secondary in-page section nav (galleries local bar) ---- */
.mk-subnav {
  font-family: var(--font-body);
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 58px; z-index: 25;
}
.mk-subnav-inner {
  max-width: var(--max); margin: 0 auto; padding: 9px 22px;
  display: flex; gap: 22px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.mk-subnav a { font-family: var(--font-body); color: var(--ink-soft); font-size: .88rem; font-weight: 600; }
.mk-subnav a:hover { color: var(--ink); text-decoration: none; }
.mk-subnav-cta { color: var(--coral-deep) !important; }
@media (max-width: 1050px) { .mk-subnav { display: none; } }

/* ---- pricing cards (the WP .sc-price spec) ---- */
.mk-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 1.6rem; }
.mk-price {
  background: #fff; border: 1px solid rgba(230, 226, 221, .7); border-radius: 16px;
  padding: 28px 26px; box-shadow: 0 1px 2px rgba(20, 25, 32, .04), 0 10px 28px rgba(43, 52, 64, .10);
  text-align: left;
}
.mk-price-name { font-size: 1.15rem; font-weight: 600; margin: 0; color: var(--ink); }
.mk-price-badge {
  font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--coral); color: #fff; padding: .18rem .45rem; border-radius: 5px;
  vertical-align: middle; margin-left: .35rem;
}
.mk-price-amt { font-size: 2rem; font-weight: 700; color: var(--ink); margin: .45rem 0 0; line-height: 1; }
.mk-price-store { color: var(--coral-deep); font-weight: 600; font-size: .95rem; margin: .35rem 0 .85rem; }
.mk-price-desc { color: var(--ink-soft); font-size: .9rem; line-height: 1.55; margin: 0; }
body.mk-elegant .mk-price-amt { font-weight: 600; }

/* ---- forms (review + contact): native rebuild of the WP GB-Pro forms ---- */
.mk-form { display: grid; gap: 16px; max-width: 720px; }
.mk-form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .mk-form-2 { grid-template-columns: 1fr; } }
.mk-form-field { display: grid; gap: 6px; }
.mk-form-field > span { font-size: .9rem; font-weight: 600; color: var(--ink); }
.mk-form-field em { color: var(--coral-deep); font-style: normal; }
.mk-form input, .mk-form textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 1px solid rgba(43, 52, 64, .25); border-radius: 10px;
  padding: 10px 13px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.mk-form input:focus, .mk-form textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(236, 138, 92, .18);
}
.mk-form textarea { resize: vertical; min-height: 110px; }
.mk-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.mk-form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mk-form-msg { margin: 0; font-weight: 600; }
.mk-form-msg.ok { color: #1a7f37; }
.mk-form-msg.err { color: #b3261e; }
.mk-form button[disabled] { opacity: .6; }
.mk-formwrap--dialog { max-width: 860px; text-align: center; }
.mk-formwrap--dialog .mk-section-intro { margin-inline: auto; }
.mk-form-dialog {
  width: min(720px, calc(100vw - 32px)); max-height: min(860px, calc(100dvh - 32px));
  padding: 0; color: var(--ink); background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(43, 52, 64, .16); border-radius: 20px;
  box-shadow: 0 28px 80px rgba(20, 25, 32, .28);
  overflow: auto;
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}
.mk-form-dialog::backdrop { background: rgba(21, 29, 39, .48); backdrop-filter: blur(5px); }
.mk-dialog-panel { padding: clamp(22px, 5vw, 38px); text-align: left; }
.mk-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.mk-dialog-head h3 { margin: 0; font-size: clamp(1.35rem, 4vw, 1.8rem); }
.mk-dialog-close {
  flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px;
  padding: 0; border: 1px solid rgba(43, 52, 64, .18); border-radius: 999px;
  background: rgba(240, 243, 247, .9); color: var(--ink); font: inherit; font-size: 1.55rem;
  line-height: 1; cursor: pointer;
}
.mk-dialog-close:hover { background: #e8edf3; }
.mk-dialog-intro { margin: .5rem 0 1.35rem; color: var(--ink-soft); }
@media (max-width: 640px) {
  .mk-form-dialog { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); border-radius: 16px; }
  .mk-dialog-panel { padding: 20px; }
}

/* ---- editorial callout card (founding-promo look, measured from WP) ---- */
.mk-callout {
  width: min(100%, 620px); margin-inline: auto; padding: 1.4rem 1.5rem;
  display: grid; gap: .35rem; text-align: center;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(23, 23, 23, .2); border-radius: 4px;
  box-shadow: 0 12px 36px rgba(43, 52, 64, .08);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
}
.mk-callout-eyebrow { margin: 0; color: #6b6b6b; font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.mk-callout-headline { margin: 0; font-family: var(--font-elegant); font-size: clamp(1.12rem, 2.4vw, 1.4rem); font-weight: 500; line-height: 1.25; color: #171717; }
.mk-callout-detail { margin: 0; color: #50545b; font-size: .9rem; }
.mk-callout-cta { margin: .6rem 0 .2rem; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.mk-btn--slate {
  background: #334155; color: #fff; border-color: #334155; border-radius: 999px;
  padding-left: 1.55rem; padding-right: 1.55rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 7px 18px rgba(43, 52, 64, .13);
}
.mk-btn--slate:hover {
  background: #171717; border-color: #171717;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 9px 22px rgba(43, 52, 64, .18);
}
.mk-pagehero-ctas { margin-top: 24px; }
