:root {
    --ink: #111111;
    --ink-soft: #2a2724;
    --muted: #4a4541;
    --line: #e8e2dc;
    --paper: #faf9f7;
    --paper-warm: #f3ede8;
    --accent: #b960d9;
    --accent-dark: #9d4fc0;
    --accent-soft: #f3ebfa;
    --white: #ffffff;
    --shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --max: 1080px;
    --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --narrow: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
}

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

a {
    color: inherit;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--narrow);
}

/* Nav */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.site-nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
}

.site-nav__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--line);
    flex-shrink: 0;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.site-nav__links a:not(.btn) {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s;
}

.site-nav__links a:not(.btn):hover {
    color: var(--ink);
}

.site-nav__links .btn--sm {
    padding: 12px 20px;
    font-size: 0.8125rem;
    min-height: 48px;
}

.site-nav__mobile-cta {
    display: none !important;
    text-decoration: none;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    min-height: 48px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:focus-visible,
.site-nav__brand:focus-visible,
.work-card:focus-visible,
.sample-page__back:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(185, 96, 217, 0.25);
}

.btn--primary:hover {
    background: var(--accent-dark);
}

.btn--secondary {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--line);
}

.btn--secondary:hover {
    border-color: var(--ink);
}

.btn--dark {
    background: var(--ink);
    color: var(--white);
}

.btn--dark:hover {
    background: #333;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* Hero */
.hero {
    padding: 72px 0 56px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 40px;
    align-items: start;
}

.hero__photo-wrap {
    position: relative;
}

.hero__photo {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: none;
    box-shadow: 0 4px 24px rgba(26, 26, 26, 0.12);
}

.hero__photo-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0.45;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.site-nav__brand-name {
    white-space: nowrap;
}

.hero h1 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.4rem, 6vw, 3.75rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero__role {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.45;
}

.hero__promise {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 560px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink);
}

.badge img {
    width: 16px;
    height: 16px;
}

/* Press bar */
.press-bar {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.press-bar__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: center;
    margin-bottom: 20px;
}

.press-bar__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
}

.press-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    height: 42px;
    padding: 0 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.press-pill:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(185, 96, 217, 0.12);
    color: var(--accent-dark);
}

.press-bar__stat {
    text-align: center;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--ink-soft);
}

.press-bar__stat a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 500;
}

.press-bar__stat a:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 72px 0;
}

.section--warm {
    background: var(--paper-warm);
}

.section__header {
    margin-bottom: 40px;
}

.section__header h2 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.section__header p {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    max-width: 560px;
}

/* Problem cards */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.04);
}

.problem-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* Expertise tags */
.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-grid--spaced {
    margin-top: 24px;
}

.tag {
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.tag--accent {
    background: var(--accent-soft);
    border-color: rgba(185, 96, 217, 0.2);
    color: var(--accent-dark);
}

/* Portfolio cards */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.work-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

.work-card__visual {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.work-card__visual--spec {
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3530 100%);
    color: var(--white);
}

.work-card__visual--editorial {
    background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
}

.work-card__visual--photo {
    padding: 0;
    height: 200px;
    background: var(--white);
}

.work-card__visual--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.work-card__visual--journalism {
    padding: 0;
}

.work-card__visual--journalism .work-card__overlay {
    background: rgba(157, 79, 192, 0.7);
    z-index: 1;
}

.work-card__visual--journalism .work-card__preview {
    position: relative;
    z-index: 0;
    color: var(--white);
}

.work-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 79, 192, 0.7);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
    line-height: 1.2;
    z-index: 1;
}

.work-card--static {
    cursor: default;
    height: 100%;
}

.work-card--static .work-card__body {
    min-height: 148px;
}

.work-card--static:hover {
    transform: none;
    box-shadow: none;
}

.work-subsection {
    margin-bottom: 40px;
}

.work-subsection:last-child {
    margin-bottom: 0;
}

.work-subsection__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.work-card__type {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.work-card__preview {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.35;
    max-width: 90%;
}

.work-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-card__pub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.work-card__body h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.35;
}

.work-card__body p {
    font-size: 0.875rem;
    color: var(--ink-soft);
    flex: 1;
}

.work-card__link {
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding-top: 8px;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--muted);
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card .btn {
    margin-top: auto;
    width: 100%;
}

.package-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.package-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.package-card h3 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.package-card > p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.package-card li {
    font-size: 0.875rem;
    color: var(--ink-soft);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* About strip */
.about-strip--single {
    display: block;
    max-width: 720px;
}

.about-strip p {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-strip__highlights {
    display: grid;
    gap: 16px;
}

.highlight-stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.highlight-stat strong {
    display: block;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.highlight-stat span {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Contact */
.contact-section {
    background: var(--ink);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 16px;
}

.contact-section > .container > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto 32px;
}

.contact-section .btn--primary {
    font-size: 0.9375rem;
    padding: 14px 32px;
    min-height: 48px;
}

.contact-section__note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-section__note a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-section__note a:hover {
    color: var(--white);
}

.contact-section__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-section__social a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.contact-section__social a:hover {
    color: var(--white);
}

/* Footer */
.site-footer {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-bottom: 12px;
}

.site-footer__links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.site-footer__links a:hover {
    color: var(--accent-dark);
}

/* Sample pages */
.sample-page {
    padding: 48px 0 80px;
}

.sample-page__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 32px;
}

.sample-page__back:hover {
    color: var(--ink);
}

.sample-page__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.sample-page h1 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 16px;
}

.sample-page__intro {
    font-size: 1.0625rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 640px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.compare-card {
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--line);
}

.compare-card--before {
    background: #f5f3f1;
}

.compare-card--after {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(185, 96, 217, 0.15);
}

.compare-card__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.compare-card--before .compare-card__tag {
    color: var(--muted);
}

.compare-card--after .compare-card__tag {
    color: var(--accent);
}

.compare-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.compare-card p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 12px;
}

.sample-block {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}

.sample-block h2 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.sample-block h3 {
    font-size: 1.125rem;
    margin: 24px 0 12px;
}

.sample-block p,
.sample-block li {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.sample-block ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.sample-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.sample-meta span {
    font-size: 0.8125rem;
    padding: 6px 12px;
    background: var(--paper-warm);
    border-radius: 999px;
    color: var(--muted);
}

.ahrefs-mock {
    background: #1e1e2e;
    color: #cdd6f4;
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    line-height: 1.8;
    margin: 24px 0;
}

.ahrefs-mock .kw {
    color: #a6e3a1;
}

.ahrefs-mock .vol {
    color: #fab387;
}

.ahrefs-mock .diff {
    color: #89b4fa;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--muted);
}

.compare-card__note {
    font-size: 0.8125rem;
    margin-top: 16px;
}

.compare-card__note--muted {
    color: var(--muted);
}

.compare-card__note--accent {
    color: var(--accent);
}

.sample-block__intro {
    margin-bottom: 32px;
    color: var(--muted);
}

.ahrefs-mock__note {
    margin-top: 12px;
    color: #9399b2;
}

.sample-block__footnote {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 24px;
}

/* Blog */
.blog-index,
.blog-post-page {
    padding: 48px 0 80px;
}

.blog-index h1,
.blog-post-page h1 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}

.blog-index__intro {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    margin-bottom: 40px;
    line-height: 1.65;
}

.blog-list {
    display: grid;
    gap: 20px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.blog-card__link {
    display: block;
    padding: 28px;
    text-decoration: none;
    color: inherit;
}

.blog-card__date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.blog-card h2 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    margin-bottom: 12px;
    line-height: 1.6;
}

.blog-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.blog-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.prose {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.prose h2 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin: 40px 0 16px;
}

.prose h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 12px;
}

.prose p {
    margin-bottom: 16px;
}

.prose ul,
.prose ol {
    margin: 0 0 16px 1.25rem;
}

.prose li {
    margin-bottom: 8px;
}

.prose a {
    color: var(--accent-dark);
    font-weight: 600;
}

.prose a:hover {
    text-decoration: underline;
}

.prose strong {
    color: var(--ink);
    font-weight: 700;
}

.prose hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 32px 0;
}

.prose em {
    color: var(--muted);
    font-size: 0.9375rem;
}

.blog-post__cta {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.blog-post__cta p {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.site-footer a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-nav__links {
        display: none;
    }

    .site-nav__mobile-cta {
        display: inline-flex !important;
        padding: 12px 16px;
        font-size: 0.8125rem;
        min-height: 48px;
    }

    .site-nav__brand {
        font-size: 0.9375rem;
        min-width: 0;
    }

    .site-nav__brand-name {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero__promise {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__photo-wrap {
        margin: 0 auto;
    }

    .hero__promise {
        margin: 0 auto;
    }

    .hero__badges {
        justify-content: center;
    }

    .btn-group {
        justify-content: center;
    }

    .about-strip {
        grid-template-columns: 1fr;
    }

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

    .work-card__overlay {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 480px) {
    .site-nav__brand-name {
        display: none;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .section {
        padding: 56px 0;
    }

    .press-bar__logos a,
    .press-pill {
        min-width: 100px;
        height: 40px;
        padding: 0 14px;
        font-size: 0.875rem;
    }
}
