@font-face { font-family: Manrope; src: url('/assets/manrope-400.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: Manrope; src: url('/assets/manrope-500.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: Manrope; src: url('/assets/manrope-600.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: Manrope; src: url('/assets/manrope-700.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: Manrope; src: url('/assets/manrope-800.ttf') format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('/assets/instrument-serif-regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('/assets/instrument-serif-italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }

:root { --paper: #f8f7f3; --ink: #1c2b36; --blue: #2f536b; --muted: #54616a; --line: #d7dcda; --pale: #eeefeb; --font: Manrope, Arial, sans-serif; --serif: 'Instrument Serif', Georgia, serif; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 18px/1.65 var(--font); -webkit-font-smoothing: antialiased; }
::selection { background: #d8e2e7; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
a, button { touch-action: manipulation; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
svg { display: block; }
[hidden] { display: none !important; }
h1, h2, h3, p { margin: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; }
h1 { font-size: clamp(64px, 7vw, 100px); }
h2 { font-size: clamp(42px, 4.8vw, 66px); }
h3 { font: 500 25px/1.3 var(--font); letter-spacing: -.04em; }
em { font-weight: 400; }
p { max-width: 63ch; }
.wrap { width: calc(100% - 112px); max-width: 1328px; margin: 0 auto; }
.section { padding-block: 100px; }
.blue { color: var(--blue); }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.eyebrow { font-size: 16px; font-weight: 500; line-height: 1.5; margin-bottom: 22px; color: var(--muted); }
.text-link { display: inline-block; font-size: 16px; font-weight: 500; line-height: 1.5; padding-block: 9px; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.text-link:hover { color: var(--blue); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 15px 22px; border: 1px solid var(--ink); border-radius: 2px; font-size: 16px; font-weight: 500; line-height: 1.4; text-align: center; transition: background .18s, color .18s; }
.button.primary { color: var(--paper); background: var(--ink); }
.button.primary:hover { background: var(--blue); border-color: var(--blue); }
.button.outline, .button.light { color: var(--ink); background: transparent; }
.button.outline:hover, .button.light:hover { background: var(--pale); }
.button.small { min-height: 46px; padding: 11px 17px; }
:focus-visible { outline: 3px solid #688caa; outline-offset: 5px; }
.skip-link { position: fixed; top: -90px; left: 20px; padding: 15px; background: white; z-index: 100; }
.skip-link:focus { top: 12px; }

/* A straightforward masthead. */
.header { position: sticky; top: 0; z-index: 30; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 94px; }
.wordmark { display: inline-block; flex: none; font: 800 31px/1 var(--font); letter-spacing: -1.6px; }
.desktop-nav { display: flex; gap: 27px; font-size: 16px; }
.desktop-nav a { padding-block: 12px; }
.desktop-nav a:hover, .desktop-nav a[aria-current] { text-decoration: underline; text-underline-offset: 7px; }
.header-actions { display: flex; gap: 14px; align-items: center; }
.menu-toggle { display: none; background: transparent; border: 0; width: 48px; height: 48px; padding: 12px; }
.menu-toggle span { display: block; background: var(--ink); height: 2px; margin: 6px 0; width: 24px; }
.menu-toggle[aria-expanded=true] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded=true] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { padding: 10px 28px 25px; border-top: 1px solid var(--line); max-height: calc(100dvh - 76px); overflow-y: auto; }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 22px; }

/* The still life is kept in its full, natural proportions. */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-block: 55px 76px; }
.hero h1 { font-size: clamp(70px, 7.6vw, 112px); line-height: .99; letter-spacing: -.025em; }
.hero h1 em { color: var(--blue); }
.hero-lead { font-size: 21px; line-height: 1.55; max-width: 39ch; margin-top: 28px; }
.hero-detail { font-size: 18px; line-height: 1.6; color: var(--muted); margin-top: 18px; max-width: 43ch; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; }
.hero-media { min-width: 0; margin: 0; background: #eae6dc; }
.hero-image { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; }
.services-overview { border-top: 1px solid var(--line); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 40px; margin-bottom: 43px; }
.section-head .text-link { flex: none; }
.service-row { display: grid; grid-template-columns: 48px 1fr 1.25fr; gap: 30px; align-items: baseline; border-top: 1px solid var(--line); padding-block: 33px; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-number { font-size: 16px; color: var(--muted); }
.service-row h3 { font-size: 27px; }
.service-row p { font-size: 18px; color: var(--muted); }
.service-row:hover h3 { text-decoration: underline; text-underline-offset: 6px; }
.value-section { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; border-top: 1px solid var(--line); }
.value-content .large-copy { font-size: 25px; line-height: 1.5; letter-spacing: -.035em; }
.value-content > p + p { margin-top: 23px; color: var(--muted); }
.value-content .text-link { margin-top: 25px; }
.process-section { padding-block: 92px; background: var(--pale); border-block: 1px solid var(--line); }
.process-section > .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.process-detail { margin-top: 34px; min-height: 224px; }
.process-stage { font-size: 21px; }
.process-description { color: var(--muted); margin-top: 15px; font-size: 18px; min-height: 90px; }
.process-outcome { margin-top: 22px; padding-left: 16px; border-left: 2px solid #8ba1ad; font-size: 16px; }
.process-intro > .text-link { margin-top: 18px; }
.process-list { align-self: center; }
.process-tab { display: grid; grid-template-columns: 36px 1fr; gap: 20px; text-align: left; align-items: baseline; width: 100%; padding: 27px 12px 27px 0; border: 0; border-top: 1px solid #c8cfcd; background: transparent; color: var(--muted); }
.process-tab:last-child { border-bottom: 1px solid #c8cfcd; }
.process-tab .step { font-size: 16px; font-weight: 400; }
.process-tab strong { font-size: 22px; font-weight: 400; letter-spacing: -.03em; }
.process-tab.active { color: var(--ink); }
.process-tab.active strong { font-weight: 600; }
.process-tab.active .step { color: var(--blue); text-decoration: underline; text-underline-offset: 7px; }
.process-tab:hover strong { text-decoration: underline; text-underline-offset: 6px; }
.faq-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; }
.faq-section .muted { margin-top: 23px; }
.faq-section .text-link { margin-top: 18px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-block: 25px; list-style: none; cursor: pointer; font-size: 18px; line-height: 1.5; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 25px; flex: none; line-height: 1; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); padding: 0 24px 25px 0; font-size: 18px; }
.closing { border-block: 1px solid var(--line); }
.closing-inner { display: flex; justify-content: space-between; align-items: center; gap: 70px; padding-block: 80px; }
.closing h2 { font-size: 70px; }
.closing p { margin-top: 24px; color: var(--muted); }
.closing .button { flex: none; }
.footer { padding-top: 52px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 55px; padding-bottom: 50px; }
.footer-top p { margin-top: 19px; font-size: 16px; color: var(--muted); }
.footer-links { display: flex; gap: 65px; }
.footer-links > div { display: flex; flex-direction: column; gap: 11px; font-size: 16px; }
.footer-links .eyebrow { margin-bottom: 5px; font-size: 14px; color: var(--muted); }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-cta { align-self: start; justify-self: end; font-size: 16px; text-decoration: underline; text-underline-offset: 6px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding-block: 25px; color: var(--muted); font-size: 14px; }

/* Inner pages share the same reading scale and rules. */
.page-intro { padding-block: 74px 70px; }
.page-intro h1 { max-width: 1000px; }
.page-intro .lead { margin-top: 28px; font-size: 22px; line-height: 1.6; color: var(--muted); max-width: 55ch; }
.page-intro .button { margin-top: 30px; }
.service-full { display: grid; grid-template-columns: 1fr 1fr; gap: 0 90px; padding-bottom: 45px; }
.service-full article { border-top: 1px solid var(--line); padding-block: 40px; }
.service-full .eyebrow { font-size: 16px; color: var(--blue); margin-bottom: 18px; }
.service-full h2 { font-size: 43px; max-width: 22ch; }
.service-full article > p:not(.eyebrow) { margin-top: 20px; font-size: 18px; color: var(--muted); }
.service-meta { font-size: 14px; color: var(--muted); margin-top: 23px; }
.service-full .text-link { margin-top: 17px; }
.slim-callout { max-width: 840px; border-top: 1px solid var(--line); }
.slim-callout p:not(.eyebrow) { margin-block: 27px; color: var(--muted); }
.detailed-process { max-width: 1100px; }
.detailed-process article { display: grid; grid-template-columns: 130px 1fr; gap: 80px; border-top: 1px solid var(--line); padding-block: 50px; }
.big-step { font: 400 76px/1 var(--serif); color: var(--blue); }
.big-step span { display: block; font: 400 16px/1.5 var(--font); margin-bottom: 12px; color: var(--muted); }
.detailed-process h2 { font-size: 46px; }
.detailed-process p { color: var(--muted); margin-top: 20px; }
.outcome { font-size: 16px; border-left: 2px solid #8ba1ad; padding-left: 16px; margin-top: 24px; }
.info-strip { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; padding: 35px 0; border-block: 1px solid var(--line); margin-top: 40px; margin-bottom: 80px; }
.info-strip h3 { font-size: 23px; }
.info-strip p { font-size: 18px; color: var(--muted); }
.deliverables-section { padding-block: 80px; border-block: 1px solid var(--line); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.principles article { border-top: 1px solid var(--line); padding-top: 27px; }
.principles h3 { font-size: 24px; }
.principles p { margin-top: 18px; font-size: 18px; color: var(--muted); }
.regional-section { max-width: 850px; }
.regional-section > p:not(.eyebrow) { color: var(--muted); margin-top: 26px; }
.region-tags { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 30px; font-size: 18px; }
.region-tags span { padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.pricing-card { border-top: 1px solid var(--line); padding-block: 31px; display: flex; flex-direction: column; align-items: start; }
.pricing-card h2 { font-size: 47px; margin-bottom: 20px; }
.pricing-card > p:not(.eyebrow) { font-size: 18px; color: var(--muted); min-height: 60px; }
.pricing-card ul { list-style: none; padding: 25px 0 0; margin: 26px 0 35px; border-top: 1px solid var(--line); font-size: 16px; width: 100%; }
.pricing-card li { margin-bottom: 16px; }
.pricing-card .button { margin-top: auto; }
.pricing-foot { font-size: 14px; color: var(--muted); margin-top: 18px; }
.resource-grid { padding-bottom: 75px; }
.resource-card { display: grid; grid-template-columns: 48px 1fr 1fr; gap: 10px 32px; border-top: 1px solid var(--line); padding-block: 36px; }
.resource-card:last-child { border-bottom: 1px solid var(--line); }
.resource-number { grid-column: 1; grid-row: 1 / 4; font-size: 16px; color: var(--muted); padding-top: 7px; }
.resource-card .eyebrow { grid-column: 2; margin: 0; font-size: 14px; }
.resource-card h2 { grid-column: 2; grid-row: 2 / 4; font-size: 37px; line-height: 1.15; }
.resource-card > p:not(.eyebrow) { grid-column: 3; grid-row: 1 / 3; font-size: 18px; color: var(--muted); padding-top: 5px; }
.resource-card .text-link { grid-column: 3; grid-row: 3; justify-self: start; }
.resource-card:hover h2 { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.download-block { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 85px; padding: 55px; margin-bottom: 90px; background: var(--pale); }
.download-block h2 { font-size: 56px; }
.download-block p:not(.eyebrow) { margin-top: 25px; color: var(--muted); font-size: 18px; }
.download-block .button { margin-top: 27px; }
.download-block p.small { font-size: 14px; margin-top: 16px; }
.checklist-art { padding: 32px; border: 1px solid #cbd1cc; background: var(--paper); }
.checklist-art .eyebrow { font-size: 14px; }
.checklist-art h3 { font: 400 56px/1.05 var(--serif); margin-bottom: 30px; }
.checklist-art > div { font-size: 16px; border-top: 1px solid var(--line); padding-block: 13px; display: flex; gap: 18px; }
.article { max-width: 850px; padding-block: 56px 90px; }
.article > .eyebrow { margin-top: 45px; }
.article h1 { font-size: 76px; line-height: 1.07; }
.article > .lead { margin-block: 27px 52px; font-size: 23px; color: var(--muted); }
.article-body { font-size: 19px; line-height: 1.8; }
.article-body p, .article-body li { color: #46535b; }
.article-body p { margin-block: 19px; }
.article-body h2 { font-size: 41px; line-height: 1.2; margin: 46px 0 22px; }
.article-body li { margin-block: 12px; padding-left: 6px; }
.article-body a { text-decoration: underline; text-underline-offset: 4px; }
.article-next { border-top: 1px solid var(--line); padding-top: 40px; margin-top: 55px; }
.article-next h2 { font-size: 44px; margin-bottom: 25px; }
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 95px; padding-bottom: 90px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 27px 20px; }
.field { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 16px; font-weight: 500; display: flex; flex-wrap: wrap; gap: 7px; }
.field label .optional { font-size: 14px; font-weight: 400; color: var(--muted); align-self: center; }
.field input, .field textarea, .field select { width: 100%; min-width: 0; background: #fdfcf9; color: var(--ink); border: 1px solid #acb8ba; border-radius: 2px; font-size: 17px; padding: 14px; }
.field textarea { min-height: 180px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6b777d; opacity: 1; }
.field input[aria-invalid=true], .field textarea[aria-invalid=true] { border-color: #a9332b; }
.field-hint { font-size: 14px; color: var(--muted); line-height: 1.6; }
#contact-form > .button { margin-top: 28px; }
.form-note { font-size: 14px; color: var(--muted); margin-top: 17px; line-height: 1.7; }
.form-error { font-size: 16px; color: #a52d23; margin-top: 25px; }
.talk-card { border-top: 1px solid var(--line); padding-top: 30px; }
.talk-card h2 { font-size: 47px; }
.talk-card p { font-size: 18px; color: var(--muted); margin-top: 24px; }
.talk-card .button, .talk-card .text-link { margin-top: 27px; }
.next-steps { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.next-steps h3 { font-size: 22px; }
.next-steps ol { padding-left: 23px; color: var(--muted); font-size: 18px; }
.next-steps li { padding-left: 5px; margin-top: 15px; }
.brief-result { padding: 27px; background: var(--pale); margin-top: 35px; }
.brief-result h2 { font-size: 38px; }
.brief-result p { margin-top: 18px; font-size: 17px; color: var(--muted); }
.brief-result pre { white-space: pre-wrap; overflow-wrap: anywhere; font: 400 16px/1.65 var(--font); margin-block: 24px; }

@media (max-width: 1150px) {
  .wrap { width: calc(100% - 80px); }
  .desktop-nav { gap: 18px; }
  .header-inner { gap: 20px; }
  .hero { gap: 35px; }
  .hero h1 { font-size: 8vw; }
  .hero-lead { font-size: 20px; }
  .hero-detail { font-size: 18px; }
  .value-section, .process-section > .wrap, .faq-section { gap: 65px; }
  .service-row { grid-template-columns: 35px 1fr 1.2fr; gap: 22px; }
  .service-row h3 { font-size: 25px; }
  .footer-top { gap: 40px; grid-template-columns: 1fr 1.2fr; }
  .footer-cta { justify-self: start; }
  .pricing-grid { gap: 25px; }
  .pricing-card h2 { font-size: 39px; }
  .contact-layout { gap: 50px; }
  .download-block { gap: 40px; padding: 40px; }
}
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { padding-block: 45px 60px; gap: 30px; }
  .hero h1 { font-size: 8vw; }
  .hero-actions { gap: 12px; }
  .hero-actions .button { font-size: 16px; padding-inline: 16px; }
  .hero-detail { font-size: 18px; }
  .section { padding-block: 75px; }
  .process-section > .wrap { gap: 45px; }
  .process-tab strong { font-size: 20px; }
  .process-tab { gap: 12px; }
  .value-section, .faq-section { gap: 45px; }
  .service-full { gap: 0 50px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 0; }
  .pricing-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px 35px; }
  .pricing-card h2, .pricing-card > p, .pricing-card .button, .pricing-foot { grid-column: 1; }
  .pricing-card .eyebrow, .pricing-card > p { margin: 0; min-height: 0; }
  .pricing-card h2 { margin: 0; }
  .pricing-card ul { grid-column: 2; grid-row: 1 / 5; padding: 0; margin: 0; border: 0; }
  .pricing-card .button { justify-self: start; }
  .pricing-foot { margin: 0; }
  .resource-card { grid-template-columns: 30px 1fr 1fr; gap: 10px 24px; }
  .resource-card h2 { font-size: 33px; }
  .principles { grid-template-columns: 1fr; gap: 35px; }
  .detailed-process article { grid-template-columns: 95px 1fr; gap: 45px; }
}
@media (max-width: 650px) {
  .wrap { width: calc(100% - 40px); }
  .header-inner { height: 76px; gap: 20px; }
  .wordmark { font-size: 30px; letter-spacing: -1.5px; }
  .header-actions > .button { display: none; }
  .mobile-nav { padding-inline: 20px; }
  h1 { font-size: 59px; }
  h2 { font-size: 42px; }
  h3 { font-size: 23px; }
  .eyebrow { font-size: 15px; margin-bottom: 18px; }
  .button { font-size: 16px; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 33px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(60px, 16vw, 85px); line-height: 1; }
  .hero-lead { font-size: 20px; line-height: 1.55; margin-top: 23px; }
  .hero-detail { font-size: 18px; line-height: 1.6; margin-top: 16px; }
  .hero-actions { gap: 12px 24px; margin-top: 24px; }
  .hero-actions .button { font-size: 16px; padding-inline: 20px; }
  .hero-media { margin: 0; }
  .section { padding-block: 60px; }
  .section-head { display: block; margin-bottom: 31px; }
  .section-head .text-link { margin-top: 18px; }
  .service-row { grid-template-columns: 30px 1fr; gap: 12px 15px; padding-block: 28px; }
  .service-row h3 { font-size: 25px; }
  .service-row p { grid-column: 2; font-size: 18px; }
  .value-section, .faq-section, .process-section > .wrap { grid-template-columns: 1fr; gap: 36px; }
  .value-content .large-copy { font-size: 24px; }
  .value-content > p + p { font-size: 18px; }
  .process-section { padding-block: 60px; }
  .process-intro h2 br { display: none; }
  .process-detail { min-height: 0; margin-top: 28px; }
  .process-description { min-height: 0; font-size: 18px; }
  .process-stage { font-size: 20px; }
  .process-outcome { font-size: 16px; }
  .process-tab { padding-block: 23px; gap: 18px; }
  .process-tab strong { font-size: 21px; }
  .faq-section { gap: 35px; }
  .faq-list summary, .faq-list details p { font-size: 18px; }
  .closing-inner { display: block; padding-block: 60px; }
  .closing h2 { font-size: 54px; }
  .closing p { font-size: 18px; }
  .closing .button { margin-top: 29px; }
  .closing p br { display: none; }
  .footer { padding-top: 42px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
  .footer-links { gap: 65px; }
  .footer-bottom { flex-wrap: wrap; gap: 15px; font-size: 14px; }
  .footer-bottom > span:nth-child(2) { flex-basis: 100%; order: 2; }
  .page-intro { padding-block: 47px 48px; }
  .page-intro h1 { font-size: clamp(52px, 14.6vw, 75px); line-height: 1.05; }
  .page-intro .lead { font-size: 20px; margin-top: 25px; }
  .service-full { grid-template-columns: 1fr; padding-bottom: 10px; }
  .service-full article { padding-block: 31px; }
  .service-full h2 { font-size: 39px; }
  .service-full .eyebrow { font-size: 16px; }
  .service-full article > p:not(.eyebrow) { font-size: 18px; }
  .service-meta { font-size: 14px; }
  .detailed-process article { grid-template-columns: 40px 1fr; gap: 23px; padding-block: 32px; }
  .big-step { font-size: 44px; }
  .big-step span { font-size: 14px; }
  .detailed-process h2 { font-size: 36px; }
  .detailed-process p { font-size: 18px; }
  .info-strip { grid-template-columns: 1fr; gap: 19px; padding-block: 28px; margin-top: 28px; margin-bottom: 60px; }
  .info-strip p { font-size: 18px; }
  .deliverables-section { padding-block: 60px; }
  .principles { gap: 29px; }
  .pricing-card { display: flex; gap: 0; padding-block: 30px; }
  .pricing-card h2 { font-size: 46px; margin-block: 18px; }
  .pricing-card ul { border-top: 1px solid var(--line); padding-top: 22px; margin-block: 25px; }
  .pricing-foot { margin-top: 18px; }
  .resource-grid { padding-bottom: 54px; }
  .resource-card { grid-template-columns: 1fr; gap: 14px; padding-block: 30px; }
  .resource-card > * { grid-column: 1 !important; grid-row: auto !important; }
  .resource-number { display: none; }
  .resource-card .eyebrow { font-size: 14px; }
  .resource-card h2 { font-size: 39px; }
  .resource-card .text-link { margin-top: 2px; }
  .download-block { grid-template-columns: 1fr; gap: 38px; padding: 28px 24px; margin-bottom: 60px; }
  .download-block h2 { font-size: 44px; }
  .download-block .button { padding-inline: 16px; }
  .checklist-art { padding: 26px 22px; }
  .checklist-art h3 { font-size: 48px; }
  .checklist-art .eyebrow { font-size: 14px; }
  .article { padding-block: 35px 60px; }
  .article h1 { font-size: 52px; }
  .article > .lead { font-size: 21px; margin-bottom: 36px; }
  .article-body { font-size: 18px; line-height: 1.8; }
  .article-body h2 { font-size: 36px; }
  .article-body ul, .article-body ol { padding-left: 23px; }
  .article-next h2 { font-size: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 45px; padding-bottom: 60px; }
  .form-grid { grid-template-columns: 1fr; gap: 26px; }
  .field.full { grid-column: auto; }
  .field label { font-size: 16px; }
  .field input, .field select, .field textarea { font-size: 17px; }
  .talk-card h2 { font-size: 43px; }
  .brief-result { padding: 22px; }
  .brief-result h2 { font-size: 37px; }
}
@media (max-width: 360px) {
  .wrap { width: calc(100% - 32px); }
  .hero h1 { font-size: 56px; }
  .hero .eyebrow { font-size: 14px; }
  .hero-actions .button { padding-inline: 16px; }
  .page-intro h1 { font-size: 49px; }
  .article h1 { font-size: 48px; }
  .footer-links { gap: 44px; }
  .process-tab { gap: 12px; }
  .process-tab strong { font-size: 20px; }
  .closing h2 { font-size: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
