/*
  lucassnyder.com — shared design system.
  Tokens below are lifted verbatim from the Squarespace build so the migrated
  site is pixel-faithful: DM Serif Display headings, DM Sans body, #1D9E75
  accent, near-black (#0a0a0a) solid header with a centred white logo.
  Page-specific rules live in the .sn-* block further down (used by mixing.html).
*/

:root {
  --ink: #111;          /* headings */
  --body: #1a1a1a;      /* default text */
  --muted: #555;        /* paragraph copy */
  --faint: #888;        /* eyebrows, captions */
  --line: #e8e8e4;      /* hairline rules and card borders */
  --wash: #f7f7f5;      /* tinted panels */
  --accent: #1d9e75;
  --accent-wash: #e8f7f2;
  --header: #0a0a0a;
  --maxw: 720px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: #fff;
  color: var(--body);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Keyboard users get the skip link; everyone else never sees it. */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 12px 20px;
  font-size: 14px; text-decoration: none; border-radius: 0 0 4px 0;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------------- header */

.site-header {
  background: var(--header);
  padding: 22px 1.5rem 18px;
  text-align: center;
}
.site-header .brand { display: inline-block; }
.site-header .brand img { width: 210px; height: auto; margin: 0 auto; }

.site-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; flex-wrap: wrap; margin-top: 18px;
}
.site-nav a {
  color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 400; line-height: 1;
  opacity: .82; transition: opacity .18s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { opacity: 1; }
.site-nav a[aria-current="page"] { font-weight: 500; }

.site-nav .social { display: flex; align-items: center; gap: 16px; }
.site-nav .social a { display: flex; }
.site-nav .social svg { width: 17px; height: 17px; fill: #fff; display: block; }

@media (max-width: 600px) {
  .site-header { padding: 18px 1.25rem 14px; }
  .site-header .brand img { width: 168px; }
  .site-nav { gap: 18px; margin-top: 14px; }
  .site-nav a { font-size: 13px; }
}

/* ---------------------------------------------------------------- shared */

.sn-page {
  font-family: 'DM Sans', sans-serif;
  color: var(--body);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sn-hero {
  text-align: center;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}
.sn-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 1.25rem;
}
.sn-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 52px; font-weight: 400; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.5rem;
}
.sn-headline span { color: var(--accent); }
/* For headlines that are a full sentence rather than a title. */
.sn-headline--sm { font-size: 32px; line-height: 1.25; max-width: 20ch; margin-inline: auto; }
.sn-sub {
  font-size: 18px; color: var(--muted); line-height: 1.75;
  max-width: 540px; margin: 0 auto 2.5rem;
}

.sn-btn {
  display: inline-block; background: var(--ink); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  padding: 15px 36px; border-radius: 4px; text-decoration: none;
  letter-spacing: .02em; transition: background .2s;
}
.sn-btn:hover { background: var(--accent); }

.sn-btn-outline {
  display: inline-block; background: transparent; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  padding: 15px 36px; border-radius: 4px; border: 1px solid var(--ink);
  text-decoration: none; letter-spacing: .02em; transition: all .2s;
}
.sn-btn-outline:hover { background: var(--ink); color: #fff; }

.sn-section { padding: 4rem 0; border-bottom: 1px solid var(--line); }
.sn-label {
  font-size: 11px; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.sn-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; font-weight: 400; color: var(--ink);
  margin-bottom: 1.25rem; line-height: 1.2;
}
.sn-body { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }

.sn-three-col {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-top: 2rem;
}
.sn-value-card { border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem; }
.sn-vc-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.sn-vc-body { font-size: 14px; color: #666; line-height: 1.65; }

.sn-for-list { list-style: none; margin-top: 1.5rem; }
.sn-for-list li {
  font-size: 16px; color: #444; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.sn-for-list li:last-child { border-bottom: none; }

.sn-check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent-wash);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sn-check svg { width: 10px; height: 10px; }

/* Testimonial embeds: two-up on desktop, stacked on mobile. */
.sn-video-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2rem;
}
.sn-video-grid iframe {
  width: 100%; aspect-ratio: 16 / 9; height: auto;
  border: 0; border-radius: 8px; display: block;
}

/* Single centred video (mix-training, stem-submission). */
.sn-video-single { margin-top: 1rem; }
.sn-video-single iframe {
  width: 100%; aspect-ratio: 16 / 9; height: auto;
  border: 0; border-radius: 8px; display: block;
}

.sn-pricing-card {
  border: 1.5px solid var(--ink); border-radius: 12px;
  padding: 2.5rem; margin-top: 2rem;
}
.sn-price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 56px; font-weight: 400; color: var(--ink); line-height: 1;
}
.sn-price-note { font-size: 14px; color: var(--faint); margin-top: 6px; margin-bottom: 2rem; }

.sn-includes { list-style: none; margin-bottom: 2rem; }
.sn-includes li {
  font-size: 15px; color: #444; padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.sn-includes li:last-child { border-bottom: none; }

.sn-addon { background: var(--wash); border-radius: 8px; padding: 1.5rem; margin-top: 1.5rem; }
.sn-addon-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.sn-addon-body { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 10px; }
.sn-addon-price { font-size: 20px; font-weight: 500; color: var(--ink); }

.sn-faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.sn-faq-item:first-of-type { padding-top: 0; }
.sn-faq-item:last-child { border-bottom: none; }
.sn-faq-q { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.sn-faq-a { font-size: 14px; color: #666; line-height: 1.75; }

.sn-final { text-align: center; padding: 5rem 0 3rem; }
.sn-final-title {
  font-family: 'DM Serif Display', serif;
  font-size: 36px; font-weight: 400; color: var(--ink);
  margin-bottom: 1rem; line-height: 1.2;
}
.sn-final-sub { font-size: 17px; color: #666; margin-bottom: 2.5rem; }
.sn-btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------- home + prose */

.sn-portrait {
  border-radius: 12px; margin: 2.5rem auto; width: 100%;
  max-width: 520px; height: auto;
}

/* Long-form pages (home bio, privacy) share one prose rhythm. */
.sn-prose p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.sn-prose p:last-child { margin-bottom: 0; }
.sn-prose h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; font-weight: 400; color: var(--ink);
  margin: 2.5rem 0 1rem; line-height: 1.2;
}
.sn-prose h3 {
  font-size: 15px; font-weight: 500; color: var(--ink);
  margin: 2rem 0 .5rem;
}
.sn-prose ul { margin: 0 0 1.25rem 1.25rem; }
.sn-prose li { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: .4rem; }
/* Scoped to inline body links so it can't outrank .sn-btn's white text. */
.sn-prose p a, .sn-prose li a { color: var(--accent); }

/* The embedded JotForm on free.html sizes itself; this just centres it. */
.sn-embed { margin-top: 2.5rem; min-height: 520px; }
.sn-embed iframe { width: 100% !important; border: 0; }

/* ---------------------------------------------------------------- footer */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 4rem; padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}
.site-footer .foot-in { max-width: var(--maxw); margin: 0 auto; }
.site-footer p { font-size: 13px; color: var(--faint); }
.site-footer .foot-links {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 12px;
}
.site-footer .foot-links a {
  font-size: 13px; color: var(--muted); text-decoration: none;
}
.site-footer .foot-links a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .sn-headline { font-size: 36px; }
  .sn-section-title { font-size: 26px; }
  .sn-price-amount { font-size: 44px; }
  .sn-final-title { font-size: 28px; }
  .sn-pricing-card { padding: 1.75rem; }
  .sn-video-grid { grid-template-columns: 1fr; gap: 16px; }
  .sn-hero { padding: 3.5rem 0 3rem; }
  .sn-section { padding: 3rem 0; }
}
