:root {
    --studio-orange: #ff5b35;
    --studio-sky: #5c8dff;
}

.studio-page {
    background: var(--paper);
}

.studio-header {
    position: sticky;
    z-index: 50;
    top: 0;
    min-height: 76px;
    padding: 0 3vw;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: rgba(240, 238, 231, 0.93);
    backdrop-filter: blur(16px);
}

.studio-wordmark {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
}

.studio-wordmark strong {
    font-size: 24px;
    letter-spacing: -0.065em;
}

.studio-wordmark span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.studio-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.8vw, 42px);
    font-size: 12px;
    font-weight: 500;
}

.studio-nav a:not(.nav-cta) {
    padding: 29px 0 26px;
}

.nav-cta {
    padding: 12px 18px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: white;
    transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
    background: var(--acid);
    color: var(--ink);
}

.studio-hero {
    position: relative;
    min-height: calc(100svh - 76px);
    padding: clamp(74px, 10vh, 124px) 3vw 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.48fr);
    grid-template-rows: 1fr auto;
    gap: 54px 8vw;
    overflow: hidden;
}

.studio-hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
}

.studio-eyebrow {
    margin: 0 0 26px;
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.studio-eyebrow::before {
    width: 30px;
    height: 1px;
    background: currentColor;
    content: "";
}

.studio-hero h1 {
    max-width: 970px;
    margin: 0;
    font-size: clamp(68px, 8.6vw, 142px);
    line-height: 0.83;
    font-weight: 600;
    letter-spacing: -0.08em;
}

.studio-hero h1 em,
.studio-contact h2 em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.075em;
}

.studio-hero-lead {
    margin-top: 38px;
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.7;
    letter-spacing: -0.03em;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.business-proof {
    width: min(100%, 760px);
    margin-top: 26px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.business-proof span {
    min-height: 64px;
    padding: 13px 15px 13px 0;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
}

.business-proof span + span {
    padding-left: 15px;
}

.business-proof span:last-child {
    border-right: 0;
}

.business-proof b {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 7px;
    letter-spacing: 0.08em;
}

.button {
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    font-size: 13px;
    font-weight: 600;
}

.button-acid {
    background: var(--acid);
}

.button-line {
    background: transparent;
}

.button span {
    transition: transform 180ms ease;
}

.button:hover span {
    transform: translate(3px, -3px);
}

.studio-hero-note {
    position: relative;
    z-index: 2;
    width: min(100%, 410px);
    align-self: end;
    justify-self: end;
    margin-bottom: 8vh;
    padding: 24px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.studio-hero-note > span,
.service-card > span,
.care-heading > span,
.care-pricing article > span {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-hero-note ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.studio-hero-note li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.studio-hero-note li::after {
    content: "↗";
}

.studio-hero-note li:last-child {
    border-bottom: 0;
}

.studio-hero-bar {
    position: relative;
    z-index: 2;
    grid-column: 1 / -1;
    min-height: 68px;
    border-top: 1px solid var(--ink);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.studio-hero-bar span {
    padding: 23px 22px 18px 0;
    border-right: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}

.studio-hero-bar span + span {
    padding-left: 22px;
}

.studio-hero-bar span:last-child {
    border-right: 0;
}

.studio-hero-bar b {
    margin-right: 15px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
}

.hero-signal {
    position: absolute;
    top: 5%;
    right: -10vw;
    width: min(55vw, 800px);
    aspect-ratio: 1;
    opacity: 0.75;
    transform: rotate(-11deg);
}

.signal-ring {
    position: absolute;
    border: 1px solid rgba(16, 17, 15, 0.2);
    border-radius: 50%;
}

.signal-ring-one { inset: 8%; }
.signal-ring-two { inset: 24% -4%; }

.signal-axis {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(16, 17, 15, 0.18);
}

.hero-signal strong {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--studio-orange);
    font-size: 110px;
    line-height: 1;
    font-weight: 400;
    transform: translate(-50%, -53%);
}

.studio-intro {
    padding: 140px 3vw 105px;
    display: grid;
    grid-template-columns: 1.2fr 0.65fr;
    align-items: end;
    gap: 8vw;
}

.studio-intro h2,
.proof-section h2,
.pricing-heading h2,
.process-section h2,
.studio-faq h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(46px, 6.3vw, 94px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.065em;
}

.studio-intro-copy {
    max-width: 520px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.service-grid {
    padding: 0 3vw 150px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    min-height: 700px;
    padding: 30px clamp(28px, 3vw, 46px) 46px;
    display: flex;
    flex-direction: column;
}

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

.service-card-blue {
    background: var(--studio-sky);
    color: var(--ink);
}

.service-card-paper {
    border: 1px solid var(--ink);
    background: var(--paper-deep);
}

.service-card h3 {
    margin: auto 0 20px;
    font-size: clamp(30px, 3.2vw, 49px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.service-card > p {
    max-width: 410px;
    color: currentColor;
    font-size: 14px;
    line-height: 1.75;
    opacity: 0.72;
}

.service-mark {
    width: min(72%, 280px);
    aspect-ratio: 1;
    margin: 65px auto 42px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--acid);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(72px, 8vw, 122px);
    font-style: italic;
}

.service-window {
    width: min(88%, 350px);
    aspect-ratio: 1.15;
    margin: 80px auto 50px;
    padding: 16px;
    border: 1px solid var(--ink);
    display: grid;
    grid-template-columns: repeat(3, 8px) 1fr;
    grid-template-rows: 20px 1fr;
    gap: 5px;
    box-shadow: 15px 15px 0 var(--acid);
}

.service-window i {
    width: 7px;
    height: 7px;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.service-window strong {
    grid-column: 1 / -1;
    align-self: end;
    font-size: clamp(38px, 4.5vw, 70px);
    line-height: 0.82;
    letter-spacing: -0.07em;
}

.service-pulse {
    position: relative;
    width: min(78%, 310px);
    aspect-ratio: 1;
    margin: 56px auto 34px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.service-pulse::before,
.service-pulse::after {
    position: absolute;
    border: 1px solid var(--ink);
    border-radius: 50%;
    content: "";
}

.service-pulse::before { inset: 15%; }
.service-pulse::after { inset: 31%; background: var(--acid); }

.service-pulse i {
    position: absolute;
    z-index: 2;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--studio-orange);
}

.service-pulse b {
    position: absolute;
    z-index: 3;
    bottom: 9%;
    padding: 7px 10px;
    background: var(--ink);
    color: white;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.proof-section {
    padding: 130px 3vw 150px;
    background: var(--ink);
    color: white;
}

.proof-section header {
    margin-bottom: 90px;
}

.proof-section .studio-eyebrow {
    color: var(--acid);
}

.proof-list {
    border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.proof-list a {
    min-height: 120px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    display: grid;
    grid-template-columns: 1fr 0.55fr auto;
    align-items: center;
    gap: 32px;
}

.proof-list span {
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.055em;
}

.proof-list small {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.proof-list b {
    font-size: 24px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.proof-list a:hover b {
    transform: translate(5px, -5px);
}

.pricing-section {
    padding: 140px 3vw 150px;
}

.pricing-heading {
    margin-bottom: 85px;
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    align-items: end;
    gap: 22px 8vw;
}

.pricing-heading .studio-eyebrow {
    grid-column: 1 / -1;
}

.pricing-heading > p:last-child {
    max-width: 490px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.build-pricing {
    border-top: 1px solid var(--ink);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.build-pricing article {
    min-height: 600px;
    padding: 28px clamp(24px, 3vw, 46px) 44px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
}

.build-pricing article:last-child {
    border-right: 0;
}

.featured-price {
    background: var(--acid);
}

.price-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.07em;
}

.price-top b {
    font-size: 11px;
}

.build-pricing h3 {
    margin: 80px 0 36px;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.price strong {
    font-size: clamp(78px, 8vw, 120px);
    line-height: 0.72;
    font-weight: 600;
    letter-spacing: -0.075em;
}

.price span {
    padding-bottom: 3px;
    font-size: 13px;
}

.build-pricing article > p:not(.price) {
    margin-top: 34px;
    font-size: 15px;
    line-height: 1.6;
}

.build-pricing ul {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.build-pricing li {
    padding: 12px 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.build-pricing li::before {
    margin-right: 10px;
    content: "✓";
}

.care-pricing {
    margin-top: 76px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    display: grid;
    grid-template-columns: 1.15fr repeat(3, 1fr);
}

.care-pricing > * {
    min-height: 235px;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.care-pricing > *:last-child {
    border-right: 0;
}

.care-heading h3 {
    margin: 58px 0 12px;
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.care-heading p,
.care-pricing article p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.care-pricing article {
    display: flex;
    flex-direction: column;
}

.care-pricing article strong {
    margin: auto 0 16px;
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 500;
    letter-spacing: -0.05em;
}

.pricing-footnote {
    margin-top: 13px;
    color: var(--muted);
    font-size: 10px;
}

.process-section {
    padding: 140px 3vw 150px;
    background: var(--studio-sky);
}

.process-section header {
    margin-bottom: 90px;
}

.process-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ink);
    list-style: none;
}

.process-list li {
    min-height: 130px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(16, 17, 15, 0.45);
    display: grid;
    grid-template-columns: 0.18fr 1fr auto;
    align-items: center;
    gap: 30px;
}

.process-list > li > span,
.process-list > li > b {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.process-list h3 {
    margin: 0 0 7px;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -0.05em;
}

.process-list p {
    font-size: 13px;
}

.studio-faq {
    padding: 140px 3vw 150px;
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 8vw;
}

.studio-faq h2 {
    font-size: clamp(48px, 6vw, 88px);
}

.faq-list {
    border-top: 1px solid var(--ink);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    font-size: clamp(17px, 1.6vw, 23px);
    font-weight: 500;
    letter-spacing: -0.035em;
    list-style: none;
}

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

.faq-list summary span {
    font-size: 28px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 700px;
    padding: 0 52px 32px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.studio-contact {
    padding: 120px 3vw 130px;
    display: grid;
    grid-template-columns: 1.2fr 0.52fr;
    align-items: end;
    gap: 8vw;
    background: var(--acid);
}

.studio-contact h2 {
    margin: 0;
    font-size: clamp(58px, 7.8vw, 124px);
    line-height: 0.86;
    font-weight: 600;
    letter-spacing: -0.075em;
}

.studio-contact-side p {
    font-size: 15px;
    line-height: 1.75;
}

.studio-contact-side a {
    margin-top: 36px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.studio-contact-side small {
    margin-top: 18px;
    display: block;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.08em;
}

.contact-dialog {
    width: min(920px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    padding: 0;
    border: 1px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 12px 12px 0 rgba(16, 17, 15, 0.28);
}

.contact-dialog::backdrop {
    background: rgba(16, 17, 15, 0.78);
    backdrop-filter: blur(5px);
}

.contact-dialog-shell {
    padding: 38px 42px 42px;
}

.contact-dialog-header {
    margin-bottom: 32px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--ink);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.contact-dialog-header h2 {
    margin: 5px 0 10px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.contact-dialog-header > div > p:last-child {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.contact-dialog-close {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid var(--ink);
    background: transparent;
    color: inherit;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
}

.contact-dialog-close:hover,
.contact-dialog-close:focus-visible {
    background: var(--ink);
    color: white;
}

.contact-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    font-size: 12px;
    font-weight: 600;
}

.contact-form label > span b {
    color: #5d46ff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 13px 14px;
    background: white;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #5d46ff;
    box-shadow: 0 0 0 2px rgba(93, 70, 255, 0.16);
}

.contact-form textarea {
    min-height: 138px;
    resize: vertical;
    line-height: 1.65;
}

.contact-message-field {
    margin-top: 20px;
}

.contact-site-section {
    margin-top: 20px;
    padding: 17px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
}

.contact-site-toggle {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    cursor: pointer;
}

.contact-site-toggle input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    accent-color: #5d46ff;
}

.contact-site-toggle span {
    font-size: 14px !important;
}

.contact-current-site {
    margin-top: 16px;
}

.contact-current-site[hidden] {
    display: none !important;
}

.contact-consent {
    margin-top: 20px;
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px !important;
}

.contact-consent input {
    width: 17px;
    height: 17px;
    accent-color: #5d46ff;
}

.contact-consent a {
    border-bottom: 1px solid currentColor;
}

.contact-form-footer {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-form-status {
    min-height: 22px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.contact-form-status.is-success {
    color: #176b3a;
    font-weight: 600;
}

.contact-form-status.is-error {
    color: #b12626;
    font-weight: 600;
}

.contact-submit {
    min-width: 190px;
    padding: 16px 20px;
    border: 1px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--acid);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    background: var(--ink);
    color: white;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.contact-honeypot {
    position: fixed;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.studio-footer {
    padding: 70px 3vw 42px;
    display: grid;
    grid-template-columns: 1fr 0.7fr auto;
    gap: 6vw;
    background: var(--ink);
    color: white;
}

.studio-footer > div:first-child > a {
    font-size: clamp(42px, 6vw, 92px);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.07em;
}

.studio-footer > div:first-child > a span {
    color: var(--acid);
    font-family: var(--mono);
    font-size: 0.14em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-footer > div:first-child > p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.studio-footer-meta {
    align-self: end;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    line-height: 1.8;
}

.studio-footer-meta address {
    font-style: normal;
}

.studio-footer nav {
    align-self: end;
    display: grid;
    gap: 12px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .studio-hero,
    .studio-intro,
    .pricing-heading,
    .studio-contact {
        grid-template-columns: 1fr;
    }

    .studio-hero {
        min-height: auto;
        padding-top: 92px;
    }

    .studio-hero-note {
        justify-self: start;
        margin-bottom: 30px;
    }

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

    .service-card {
        min-height: 620px;
    }

    .service-mark,
    .service-window,
    .service-pulse {
        width: min(52%, 330px);
        margin-block: 46px 28px;
    }

    .build-pricing {
        grid-template-columns: 1fr;
    }

    .build-pricing article {
        min-height: 520px;
        border-right: 0;
    }

    .care-pricing {
        grid-template-columns: repeat(3, 1fr);
    }

    .care-heading {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .studio-faq {
        grid-template-columns: 1fr;
    }

    .studio-footer {
        grid-template-columns: 1fr 1fr;
    }

    .studio-footer nav {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, max-content);
    }
}

@media (max-width: 700px) {
    .studio-header {
        min-height: 66px;
        padding-inline: 20px;
    }

    .studio-wordmark strong {
        font-size: 20px;
    }

    .studio-wordmark span {
        font-size: 8px;
    }

    .studio-nav a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        padding: 10px 13px;
        font-size: 11px;
    }

    .studio-hero {
        padding: 76px 20px 0;
    }

    .studio-hero h1 {
        font-size: clamp(54px, 16.5vw, 90px);
        line-height: 0.87;
    }

    .business-proof {
        grid-template-columns: 1fr;
    }

    .business-proof span,
    .business-proof span + span {
        min-height: 50px;
        padding: 10px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .business-proof span:last-child {
        border-bottom: 0;
    }

    .studio-hero-lead br {
        display: none;
    }

    .hero-signal {
        top: 3%;
        right: -37vw;
        width: 105vw;
    }

    .studio-hero-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .studio-hero-bar span:nth-child(2) {
        border-right: 0;
    }

    .studio-hero-bar span:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .studio-intro,
    .proof-section,
    .pricing-section,
    .process-section,
    .studio-faq,
    .studio-contact {
        padding: 95px 20px;
    }

    .service-grid {
        padding: 0 12px 100px;
    }

    .service-card {
        min-height: 590px;
        padding: 25px 26px 35px;
    }

    .service-mark,
    .service-window,
    .service-pulse {
        width: min(76%, 300px);
    }

    .proof-list a {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .proof-list small {
        grid-column: 1;
        grid-row: 2;
    }

    .proof-list b {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .care-pricing {
        grid-template-columns: 1fr;
    }

    .care-heading,
    .care-pricing > * {
        min-height: 205px;
        grid-column: 1;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .care-pricing > *:last-child {
        border-bottom: 0;
    }

    .process-list li {
        grid-template-columns: 46px 1fr;
    }

    .process-list > li > b {
        display: none;
    }

    .studio-contact h2 {
        font-size: clamp(51px, 15.5vw, 78px);
    }

    .contact-dialog {
        width: 100vw;
        max-width: none;
        max-height: 100dvh;
        height: 100dvh;
        border: 0;
        box-shadow: none;
    }

    .contact-dialog-shell {
        min-height: 100%;
        padding: 24px 20px 34px;
    }

    .contact-dialog-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .contact-dialog-header h2 {
        font-size: 48px;
    }

    .contact-dialog-header > div > p:last-child {
        max-width: 250px;
    }

    .contact-field-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-message-field {
        margin-top: 16px;
    }

    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .contact-submit {
        width: 100%;
    }

    .studio-footer {
        padding: 60px 20px 34px;
        grid-template-columns: 1fr;
    }

    .studio-footer nav {
        grid-column: 1;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
