.clear-site .brand-mark {
    width: 34px;
    font-size: 15px;
}
.clear-site .brand {
    font-size: 18px;
    letter-spacing: 0.01em;
    gap: 11px;
}
.clear-site .brand-mark {
    width: 36px;
    height: 36px;
    background: #17252d;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 3px 3px 0 #e8785d;
}
.clear-site .clear-header {
    box-shadow: 0 5px 18px rgba(23, 37, 45, 0.04);
}
.clear-site .clear-nav a {
    font-weight: 500;
}
.clear-site .clear-nav .nav-cta {
    background: #e8785d;
    border: 1px solid #e8785d;
    padding: 11px 18px;
}
.clear-site .clear-nav .nav-cta:hover {
    background: #17252d;
    border-color: #17252d;
}
/* Contact form */
.clear-site .clear-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #f8f8f5;
}
.clear-form-section {
    background: #e9eee9;
    padding: 108px 0;
}
.clear-form-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.clear-form-heading h2 {
    font-size: clamp(31px, 4vw, 49px);
    line-height: 1.35;
    letter-spacing: -0.06em;
    margin: 0;
}
.clear-form-heading h2 em {
    color: #e05f45;
    font-style: normal;
}
.clear-form-heading > p:last-child {
    color: #6c7a7c;
    font-size: 14px;
    line-height: 1.9;
    margin: 20px 0 0;
}
.clear-form {
    background: #fff;
    padding: 32px;
    border: 1px solid #d9e1dc;
    display: grid;
    gap: 9px;
}
.clear-form label {
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
}
.clear-form label span {
    color: #e05f45;
    font-size: 10px;
    font-weight: 500;
    margin-left: 6px;
}
.clear-form input,
.clear-form textarea {
    width: 100%;
    border: 1px solid #cbd6d0;
    border-radius: 2px;
    background: #f8f8f5;
    color: #17252d;
    font: inherit;
    font-size: 14px;
    padding: 11px 12px;
}
.clear-form input:focus,
.clear-form textarea:focus {
    outline: 2px solid #e8785d;
    outline-offset: 1px;
}
.clear-form textarea {
    resize: vertical;
    min-height: 130px;
}
.clear-form .clear-button {
    border: 0;
    cursor: pointer;
    justify-self: start;
    margin-top: 10px;
    font-family: inherit;
}
@media (max-width: 800px) {
    .clear-form-section {
        padding: 78px 0;
    }
    .clear-form-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .clear-form {
        padding: 24px 19px;
    }
}
.menu-overlay {
    display: none;
}
@media (max-width: 800px) {
    body.menu-open {
        overflow: hidden;
    }
    .menu-toggle {
        position: relative;
        z-index: 32;
        display: flex;
        width: 38px;
        height: 38px;
        padding: 8px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }
    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #17252d;
        transition:
            transform 0.28s ease,
            opacity 0.2s ease;
    }
    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .menu-overlay {
        display: block;
        position: fixed;
        z-index: 15;
        inset: 0;
        background: rgba(23, 37, 45, 0.65);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
    }
    .menu-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav.is-open {
        z-index: 30;
        display: flex;
        animation: menu-slide-in 0.28s ease both;
    }
    @keyframes menu-slide-in {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
.clear-site header .brand-logo {
    display: block;
    width: 350px;
    height: auto;
}
@media (max-width: 800px) {
    .clear-site header .brand-logo {
        width: 275px;
    }
}
.clear-site footer .brand-logo {
    display: block;
    width: 220px;
    height: auto;
}
@media (max-width: 800px) {
    .clear-site footer .brand-logo {
        width: 160px;
    }
}
.clear-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #f8f8f5;
}
.clear-form fieldset {
    border: 0;
    margin: 22px 0 0;
    padding: 0;
}
.clear-form legend {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    margin-bottom: 12px;
}
.clear-form legend span {
    color: #e05f45;
    font-size: 10px;
    font-weight: 500;
    margin-left: 6px;
}
.clear-form .clear-choice {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    font-weight: 400;
    margin: 7px 0;
    line-height: 1.6;
    cursor: pointer;
}
.clear-form .clear-choice input {
    width: auto;
    flex: 0 0 auto;
    margin: 4px 0 0;
    padding: 0;
}
.clear-form .clear-conditional-input {
    margin: 5px 0 8px 24px;
    width: calc(100% - 24px);
}
.clear-form label small {
    color: #788685;
    font-size: 10px;
    font-weight: 500;
    margin-left: 6px;
}
.clear-error {
    position: relative;
    background: #fff1ed;
    color: #c95f48;
    border: 1px solid #f0b2a3;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    margin: 6px 0 4px;
    padding: 8px 12px;
}
.clear-error::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 15px;
    width: 10px;
    height: 10px;
    background: #fff1ed;
    border-left: 1px solid #f0b2a3;
    border-top: 1px solid #f0b2a3;
    transform: rotate(45deg);
}
.clear-form fieldset > .clear-error {
    margin-top: 12px;
}
.clear-form .has-error {
    border-color: #e8785d;
    background: #fff8f6;
}
.clear-form-hint {
    color: #788685;
    font-size: 11px;
    line-height: 1.6;
    margin: -4px 0 0;
}
.clear-form-heading .nowrap {
    white-space: nowrap;
}
.clear-form .multi-choice-note {
    color: #788685;
    font-size: 11px;
    font-weight: 500;
    margin-left: 4px;
}
.clear-form .clear-conditional-input {
    display: none;
}
.clear-form .clear-conditional-input:not(:disabled) {
    display: block;
}
/* meg studio site styles */
.clear-site {
    background: #f8f8f5;
    color: #17252d;
}
.clear-site .section-shell {
    width: min(1120px, calc(100% - 48px));
}
.clear-header {
    height: 76px;
    border-bottom: 1px solid #e2e6e1;
}
.clear-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
}
.clear-nav a {
    color: #536268;
}
.clear-nav .nav-cta {
    color: #fff;
    background: #e8785d;
    padding: 11px 17px;
    border-radius: 3px;
}
.clear-hero {
    padding: 82px 0 90px;
    background: #f8f8f5;
}
.clear-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}
.clear-kicker {
    color: #e05f45;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
}
.clear-hero h1 {
    max-width: 670px;
    font-size: clamp(40px, 5.3vw, 70px);
    line-height: 1.23;
    letter-spacing: -0.02em;
    margin: 0;
}
.clear-hero h1 em,
.clear-section h2 em {
    color: #e05f45;
    font-style: normal;
}
.clear-lead {
    color: #65747a;
    font-size: 16px;
    line-height: 2;
    margin: 25px 0 30px;
}
.clear-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}
.clear-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-radius: 3px;
    background: #e8785d;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.clear-button:hover {
    background: #c95f48;
}
.clear-subnote {
    color: #788685;
    font-size: 11px;
    margin: 18px 0 0;
}
.clear-hero-card {
    background: #17252d;
    color: #fff;
    padding: 35px 32px;
    border-radius: 4px;
    box-shadow: 18px 18px 0 #dfe7df;
}
.clear-hero-card p {
    color: #aec0bc;
    font-size: 12px;
    margin: 0;
}
.clear-hero-card h2 {
    font-size: 28px;
    line-height: 1.5;
    margin: 14px 0 25px;
    letter-spacing: -0.04em;
}
.clear-mini-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.clear-mini-price div {
    border-top: 1px solid #536269;
    padding-top: 14px;
}
.clear-mini-price span {
    display: block;
    color: #aec0bc;
    font-size: 11px;
}
.clear-mini-price strong {
    display: block;
    font-family: var(--display);
    font-size: 27px;
    margin-top: 4px;
}
.clear-section {
    padding: 80px 0;
}
.clear-section h2 {
    font-size: clamp(31px, 4vw, 49px);
    line-height: 1.35;
    letter-spacing: -0.06em;
    margin: 0;
}
.clear-label {
    color: #e05f45;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 0 0 17px;
}
.clear-section-lead {
    color: #6c7a7c;
    font-size: 14px;
    line-height: 1.9;
    margin: 18px 0 0;
}
.clear-pricing {
    background: #e9eee9;
}
.clear-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 45px;
}
.clear-price-card {
    background: #fff;
    padding: 30px 32px;
    border: 1px solid #d9e1dc;
}
.clear-price-card p {
    color: #647276;
    font-size: 13px;
    margin: 0;
}
.clear-price-card strong {
    display: block;
    color: #17252d;
    font-family: var(--display);
    font-size: 42px;
    letter-spacing: -0.06em;
    line-height: 1.2;
    margin: 8px 0 11px;
}
.clear-price-card strong small {
    font-size: 17px;
    letter-spacing: 0;
}
.clear-price-card span {
    display: block;
    color: #e05f45;
    font-size: 12px;
    font-weight: 700;
}
.clear-free {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 19px 24px;
    background: #17252d;
    color: #fff;
}
.clear-free strong {
    font-size: 15px;
    white-space: nowrap;
}
.clear-free p {
    color: #b9c6c2;
    font-size: 12px;
    margin: 0;
}
.clear-update-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
    padding: 17px 24px;
    background: #fff;
    border: 1px solid #d9e1dc;
}
.clear-update-price strong {
    font-size: 14px;
}
.clear-update-price span {
    color: #e05f45;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}
.clear-update-price span small {
    font-size: 14px;
    font-weight: 500;
}
.clear-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px;
}
.clear-step {
    border-top: 2px solid #e8785d;
    padding: 19px 18px 0 0;
}
.clear-step span {
    color: #e05f45;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
}
.clear-step h3 {
    font-size: 18px;
    margin: 15px 0 8px;
}
.clear-step p {
    color: #6c7a7c;
    font-size: 13px;
    line-height: 1.9;
    margin: 0;
}
.clear-services {
    background: #fff;
}
.clear-service-list {
    border-top: 1px solid #dce3e2;
    margin-top: 45px;
}
.clear-service {
    display: grid;
    grid-template-columns: 58px 1fr 25px;
    gap: 12px;
    padding: 23px 0;
    border-bottom: 1px solid #dce3e2;
}
.clear-service > span {
    color: #e05f45;
    font-family: var(--display);
    font-size: 12px;
}
.clear-service h3 {
    margin: 0;
    font-size: 17px;
}
.clear-service p {
    color: #6c7a7c;
    font-size: 13px;
    margin: 5px 0 0;
}
.clear-service b {
    color: #e05f45;
    font-size: 22px;
    font-weight: 400;
}
.clear-faq {
    background: #f8f8f5;
}
.clear-faq-list {
    max-width: 760px;
    margin: 42px 0 0 auto;
}
.clear-faq-item {
    border-top: 1px solid #dce3e2;
    padding: 20px 0;
}
.clear-faq-item:last-child {
    border-bottom: 1px solid #dce3e2;
}
.clear-faq-item h3 {
    font-size: 15px;
    margin: 0;
}
.clear-faq-item p {
    color: #6c7a7c;
    font-size: 13px;
    margin: 8px 0 0;
}
.clear-contact {
    background: #17252d;
    color: #fff;
    padding: 75px 0;
}
.clear-contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}
.clear-contact h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.06em;
}
.clear-contact p {
    color: #b9c6c2;
    font-size: 13px;
    margin: 18px 0 0;
}
.clear-contact .clear-button {
    flex-shrink: 0;
}
.clear-footer {
    background: #6c7a7c;
    border-top: 1px solid #526269;
    color: #b9c6c2;
    padding: 15px 0;
}
.clear-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.clear-footer small {
    font-size: 11px;
    margin-left: auto;
    text-align: right;
}
@media (max-width: 800px) {
    .clear-site .section-shell {
        width: min(100% - 40px, 560px);
    }
    .clear-nav {
        display: none;
    }
    .clear-hero {
        padding: 58px 0 75px;
    }
    .clear-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .clear-hero h1 {
        font-size: 42px;
    }
    .clear-hero-card {
        max-width: 440px;
        box-shadow: 12px 12px 0 #dfe7df;
    }
    .clear-section {
        padding: 40px 0;
    }
    .clear-price-grid,
    .clear-steps {
        grid-template-columns: 1fr;
    }
    .clear-price-card {
        padding: 24px 16px;
    }
    .clear-form .multi-choice-note {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    .clear-free {
        display: block;
    }
    .clear-free p {
        margin-top: 7px;
    }
    .clear-update-price {
        display: block;
    }
    .clear-update-price span {
        display: block;
        margin-top: 5px;
    }
    .clear-contact-inner {
        display: block;
    }
    .clear-contact .clear-button {
        margin-top: 28px;
    }
    .clear-footer-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
    .clear-footer small {
        display: block;
        margin-top: 0;
        font-size: 9px;
        line-height: 1.4;
    }
}
@media (max-width: 800px) {
    .clear-site .menu-toggle {
        position: relative;
        z-index: 32;
        display: flex;
        width: 42px;
        height: 42px;
        padding: 9px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
    }
    .clear-site .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 0;
        background: #17252d;
        transition:
            transform 0.28s ease,
            opacity 0.2s ease;
    }
    .clear-site .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .clear-site .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .clear-site .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}
:root {
    --ink: #17252d;
    --muted: #718087;
    --line: #dce3e2;
    --paper: #f5f7f4;
    --cream: #eef0ea;
    --coral: #e8785d;
    --coral-dark: #c95f48;
    --white: #fff;
    --display: "DM Sans", "Noto Sans JP", sans-serif;
    --body: "Noto Sans JP", "DM Sans", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.8;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.section-shell {
    width: min(1180px, calc(100% - 64px));
    margin: auto;
}
.site-header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 64px));
    margin: auto;
    padding-right: 15px;
}
.brand {
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    background: var(--coral);
    color: #fff;
    border-radius: 50% 50% 50% 4px;
    font-size: 20px;
    font-style: italic;
}
.nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 13px;
    color: #526067;
}
.nav a {
    transition: color 0.2s ease;
}
.nav a:hover {
    color: var(--coral-dark);
}
.nav-cta {
    background: var(--ink);
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 2px;
}
.nav-cta span,
.button span {
    margin-left: 8px;
    font-size: 16px;
}
.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 23px;
    color: var(--ink);
}
.hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    min-height: 650px;
    padding: 72px 0 100px;
}
.eyebrow {
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--coral-dark);
    margin: 0 0 22px;
}
.eyebrow span:not(.eyebrow-dot) {
    color: #96a4a4;
    margin-left: 8px;
}
.eyebrow-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
    background: var(--coral);
    border-radius: 50%;
    margin: 0 8px 1px 0;
}
.hero h1,
.section-heading h2,
.contact-copy h2 {
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.25;
    letter-spacing: -0.06em;
    margin: 0;
    font-weight: 900;
}
.hero h1 em,
.section-heading h2 em,
.contact-copy h2 em {
    font-style: normal;
    color: var(--coral);
}
.hero-lead {
    font-size: 15px;
    color: #68777d;
    margin: 26px 0 32px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.button {
    display: inline-flex;
    align-items: center;
    padding: 15px 22px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    border-radius: 2px;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.button:hover {
    transform: translateY(-3px);
}
.button-primary {
    background: var(--coral);
    color: #fff;
}
.button-primary:hover {
    background: var(--coral-dark);
}
.text-link {
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
}
.text-link span {
    margin-left: 8px;
    color: var(--coral);
}
.hero-note {
    font-size: 11px;
    color: #879395;
    margin-top: 25px;
}
.hero-note span {
    color: var(--coral);
    font-size: 9px;
    margin-right: 6px;
}
.hero-visual {
    position: relative;
    max-width: 530px;
    margin-left: auto;
}
.visual-frame {
    position: relative;
    padding: 0 28px 28px 0;
}
.visual-frame:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 91%;
    height: 91%;
    background: #d8dfd9;
    z-index: -1;
}
.visual-frame img {
    height: 465px;
    filter: saturate(0.75);
}
.visual-caption {
    position: absolute;
    bottom: 1px;
    left: 1px;
    background: var(--white);
    padding: 18px 24px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    font-size: 13px;
}
.visual-caption span {
    font-family: var(--display);
    color: var(--coral);
    font-size: 11px;
}
.visual-caption strong {
    line-height: 1.7;
}
.floating-stamp {
    position: absolute;
    right: -16px;
    top: 33px;
    background: var(--coral);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    padding-top: 17px;
    font-family: var(--display);
    font-size: 10px;
    line-height: 1.2;
    transform: rotate(10deg);
}
.floating-stamp strong {
    font-size: 20px;
}
.scribble {
    position: absolute;
    right: -67px;
    bottom: 42px;
    font-family: cursive;
    color: #899693;
    font-size: 13px;
    line-height: 1.2;
    transform: rotate(-9deg);
}
.trust-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f1f4f0;
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}
.trust-inner p {
    font-size: 12px;
    color: #899595;
}
.trust-items {
    display: flex;
    gap: 43px;
    font-family: var(--display);
    font-size: 12px;
    color: #647276;
}
.section {
    padding: 140px 0;
}
.section-heading {
    max-width: 620px;
    margin-bottom: 60px;
}
.section-heading > p:last-child {
    font-size: 14px;
    color: var(--muted);
    max-width: 460px;
    margin: 24px 0 0;
}
.works-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 52px;
    align-items: end;
}
.work-card {
    display: block;
}
.work-image {
    position: relative;
    overflow: hidden;
    background: #dfe5e0;
}
.work-image img {
    height: 390px;
    transition: transform 0.7s ease;
    filter: saturate(0.8);
}
.work-card:not(.work-large) .work-image img {
    height: 275px;
}
.work-card:hover img {
    transform: scale(1.04);
}
.work-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    background: var(--white);
    font-family: var(--display);
    font-size: 20px;
}
.work-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    color: #7d898b;
    font-family: var(--display);
    font-size: 11px;
}
.work-meta div {
    display: grid;
    gap: 2px;
}
.work-meta strong {
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
}
.service-section {
    background: #e7ece7;
}
.service-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}
.service-list {
    border-top: 1px solid #bdc8c2;
}
.service-item {
    display: grid;
    grid-template-columns: 52px 1fr 20px;
    gap: 15px;
    padding: 27px 0;
    border-bottom: 1px solid #bdc8c2;
    align-items: start;
}
.service-number {
    font-family: var(--display);
    color: var(--coral);
    font-size: 11px;
}
.service-item h3 {
    margin: 0 0 7px;
    font-size: 17px;
    letter-spacing: -0.03em;
}
.service-item p {
    margin: 0;
    color: #71807e;
    font-size: 13px;
    line-height: 1.8;
}
.service-plus {
    font-size: 22px;
    font-weight: 300;
    color: #7e8985;
}
.flow-section {
    padding-bottom: 145px;
}
.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.flow-step {
    padding: 29px 46px 0 0;
    border-right: 1px solid var(--line);
    margin-right: 44px;
}
.flow-step:last-child {
    border-right: 0;
    margin: 0;
}
.flow-step > span {
    font-family: var(--display);
    color: var(--coral);
    font-size: 11px;
}
.flow-step h3 {
    font-size: 18px;
    margin: 17px 0 9px;
}
.flow-step p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.price-band {
    background: var(--ink);
    color: #fff;
    padding: 78px 0;
}
.price-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-band .eyebrow {
    color: #e8a18f;
}
.price-inner h2 {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: -0.04em;
    margin: 0;
}
.price-value {
    text-align: right;
}
.price-value > span {
    display: block;
    color: #afbdba;
    font-size: 12px;
    margin-bottom: 5px;
}
.price-value strong {
    font-family: var(--display);
    font-size: 52px;
    letter-spacing: -0.06em;
    display: block;
    line-height: 1.1;
}
.price-value strong small {
    font-size: 22px;
}
.price-value p {
    font-size: 11px;
    color: #879895;
    margin: 7px 0 20px;
}
.light-link {
    color: #fff;
}
.contact-section {
    padding: 140px 0;
}
.contact-card {
    background: #dfe7df;
    padding: 68px 75px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.contact-copy {
    max-width: 560px;
}
.contact-copy > p:last-child {
    color: #697878;
    font-size: 14px;
    max-width: 500px;
    margin: 23px 0 0;
}
.contact-action {
    text-align: right;
    display: grid;
    justify-items: end;
    gap: 13px;
}
.contact-action > span {
    font-family: var(--display);
    font-size: 11px;
    color: #71807e;
}
.site-footer {
    border-top: 1px solid var(--line);
    padding: 37px 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    align-items: center;
}
.footer-inner p,
.footer-inner small {
    margin: 0;
    color: #8b9796;
    font-size: 11px;
}
.footer-links {
    display: flex;
    gap: 20px;
    font-size: 11px;
    color: #6a7777;
    justify-content: center;
}
.footer-inner small {
    text-align: right;
    font-family: var(--display);
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay {
    transition-delay: 0.14s;
}
@media (max-width: 800px) {
    .section-shell,
    .site-header {
        width: min(100% - 40px, 580px);
    }
    .site-header {
        height: 70px;
    }
    .nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav.is-open {
        display: flex;
        position: absolute;
        z-index: 10;
        top: 70px;
        left: 0;
        right: 0;
        padding: 16px 20px;
        background: var(--white);
        box-shadow: 0 12px 25px rgba(23, 37, 45, 0.08);
        gap: 19px;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 58px 0 80px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 43px;
    }
    .hero-visual {
        width: 90%;
        margin: 0 auto;
    }
    .visual-frame img {
        height: 350px;
    }
    .scribble {
        right: -20px;
    }
    .trust-inner {
        display: block;
        padding: 22px 0;
    }
    .trust-items {
        flex-wrap: wrap;
        gap: 10px 24px;
        margin-top: 12px;
    }
    .section {
        padding: 90px 0;
    }
    .section-heading {
        margin-bottom: 43px;
    }
    .section-heading h2,
    .contact-copy h2 {
        font-size: 40px;
    }
    .works-grid,
    .service-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .work-image img,
    .work-card:not(.work-large) .work-image img {
        height: 270px;
    }
    .service-item {
        grid-template-columns: 38px 1fr 20px;
    }
    .flow-grid {
        grid-template-columns: 1fr;
    }
    .flow-step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        margin: 0;
        padding: 25px 0;
    }
    .flow-step:last-child {
        border-bottom: 0;
    }
    .price-inner {
        display: block;
    }
    .price-value {
        text-align: left;
        margin-top: 35px;
    }
    .price-value strong {
        font-size: 46px;
    }
    .contact-section {
        padding: 90px 0;
    }
    .contact-card {
        padding: 43px 29px;
        display: block;
    }
    .contact-action {
        justify-items: start;
        margin-top: 30px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .footer-links {
        justify-content: flex-start;
    }
    .footer-inner small {
        text-align: left;
    }
    .floating-stamp {
        right: -8px;
    }
    .eyebrow {
        margin-bottom: 18px;
    }
}
