@font-face {
    font-family: "GmarketSans";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GmarketSans";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GmarketSans";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #050505;
    --white: #ffffff;
    --paper: #f5f6f6;
    --silver: #c7ccd0;
    --silver-dark: #7c868b;
    --line: rgba(35, 45, 50, 0.2);
    --deep-sea: #164b59;
    --plum: #8d1747;
    --page-pad: 3rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
    font-family: "GmarketSans", "Noto Sans KR", sans-serif;
    word-break: keep-all;
}

body,
button,
a {
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font: inherit;
}

.service-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 10000;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-sea), var(--silver), var(--plum));
}

.floating-language-switch {
    position: fixed;
    top: clamp(0.8rem, 2.2vh, 1.5rem);
    right: clamp(0.8rem, 1.8vw, 1.8rem);
    z-index: 5000;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: clamp(5.6rem, 7.2vw, 6.8rem);
    min-height: 2.5rem;
    padding: 0.2rem;
    overflow: hidden;
    border: 1px solid rgba(117, 130, 137, 0.42);
    border-radius: 999px;
    background: rgba(245, 247, 248, 0.74);
    box-shadow: 0 0.45rem 1.6rem rgba(10, 18, 22, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(1.1rem) saturate(125%);
}

.floating-language-switch a {
    display: grid;
    min-width: 0;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #32383b;
    font-family: "Inter", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.floating-language-switch a:hover,
.floating-language-switch a:focus-visible {
    border-color: rgba(117, 130, 137, 0.48);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0.8rem rgba(194, 204, 209, 0.62);
    outline: none;
}

.floating-language-switch a.active {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, #234c5c 0%, #111719 56%, #050505 100%);
    color: var(--white);
    box-shadow: 0 0.2rem 0.7rem rgba(6, 15, 19, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-main-menu {
    position: absolute;
    top: clamp(20px, 3vw, 38px);
    left: clamp(22px, 4.3vw, 70px);
    right: clamp(22px, 4.3vw, 70px);
    z-index: 30;
    display: grid;
    width: min(620px, calc(100% - 12rem));
    grid-template-columns: repeat(5, max-content);
    justify-content: space-between;
    gap: 0.875rem;
}

.service-main-menu a {
    display: inline-flex;
    min-height: 2.25rem;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-family: "Inter", sans-serif;
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 280ms ease, background 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.service-main-menu a:hover,
.service-main-menu a:focus-visible {
    border-color: rgba(196, 200, 204, 0.86);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(196, 200, 204, 0.34)), rgba(246, 247, 247, 0.68);
    color: var(--deep-sea);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 0 1.4rem rgba(196, 200, 204, 0.38);
    outline: none;
}

.service-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.service-hero-visual {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0.2;
}

.service-hero-visual::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.38);
    content: "";
}

.service-hero-visual img {
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) saturate(0.3) contrast(0.92);
}

.service-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding: 7rem var(--page-pad) 13rem;
}

.service-eyebrow,
.catalog-intro > p:first-child,
.section-heading > p,
.catalog-rail > p {
    margin: 0;
    color: var(--deep-sea);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.service-hero h1 {
    margin: 1.5rem 0 2rem;
    font-family: "Inter", sans-serif;
    font-size: 10rem;
    font-weight: 800;
    line-height: 0.82;
}

.service-hero-description {
    max-width: 44rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.72;
}

.service-index {
    position: absolute;
    inset: auto var(--page-pad) 2rem;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid rgba(117, 130, 137, 0.42);
    border-radius: 0.5rem;
    background: rgba(248, 249, 249, 0.7);
    box-shadow: 0 1.2rem 3.8rem rgba(31, 43, 49, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(1.3rem) saturate(118%);
}

.service-index a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 7.5rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    overflow: hidden;
    border-right: 1px solid var(--line);
    transition: background 300ms ease, color 300ms ease;
}

.service-index a:last-child {
    border-right: 0;
}

.service-index a::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.96) 50%, transparent 70%);
    content: "";
    transform: translateX(-120%);
    transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-index a:hover::before,
.service-index a:focus-visible::before {
    transform: translateX(120%);
}

.service-index a:hover,
.service-index a:focus-visible {
    background: rgba(210, 216, 219, 0.42);
    color: var(--deep-sea);
    outline: none;
}

.service-index span,
.service-index strong {
    position: relative;
    z-index: 1;
}

.service-index span {
    color: var(--plum);
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
}

.service-index strong {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.2;
}

.catalog-intro {
    display: grid;
    min-height: 72vh;
    grid-template-columns: 1fr 1.35fr;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 2rem 5rem;
    padding: 7rem var(--page-pad);
    border-bottom: 1px solid var(--line);
}

.catalog-intro > p:first-child {
    grid-column: 1;
}

.catalog-intro h2 {
    grid-column: 1;
    margin: 0;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.08;
}

.catalog-intro > p:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
    max-width: 34rem;
    margin: 0;
    padding-bottom: 0.5rem;
    color: rgba(5, 5, 5, 0.68);
    font-size: 1rem;
    line-height: 1.85;
}

.service-catalog {
    background: var(--paper);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 13rem minmax(28rem, 1fr) minmax(28rem, 40vw);
    align-items: start;
}

.catalog-rail {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    padding: 6rem 1.5rem 2rem var(--page-pad);
    border-right: 1px solid var(--line);
}

.catalog-rail nav {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.catalog-rail a {
    display: grid;
    grid-template-columns: 1.7rem minmax(0, 1fr);
    align-items: baseline;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(35, 45, 50, 0.12);
    color: rgba(5, 5, 5, 0.42);
    font-family: "Inter", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 260ms ease, padding-left 260ms ease;
}

.catalog-rail a span {
    font-size: 0.58rem;
}

.catalog-rail a:hover,
.catalog-rail a:focus-visible,
.catalog-rail a.is-active {
    padding-left: 0.45rem;
    color: var(--black);
    outline: none;
}

.catalog-rail a.is-active span {
    color: var(--plum);
}

.catalog-chapters {
    border-right: 1px solid var(--line);
}

.service-chapter {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 3rem 5rem;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 0;
}

.chapter-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: baseline;
    gap: 0.75rem 1.25rem;
}

.chapter-heading > span {
    grid-row: 1 / 3;
    align-self: start;
    color: var(--plum);
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
}

.chapter-heading > p {
    margin: 0;
    color: var(--deep-sea);
    font-family: "Inter", sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
}

.chapter-heading h3 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 0.98;
}

.chapter-heading strong {
    grid-column: 2;
    margin-top: 0.4rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.chapter-copy {
    max-width: 39rem;
    margin: 3rem 0;
    padding-left: 2.05rem;
}

.chapter-copy p {
    margin: 0;
    color: rgba(5, 5, 5, 0.72);
    font-size: 1rem;
    line-height: 1.85;
}

.chapter-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 2.05rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.chapter-specs section {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.chapter-specs section + section {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
}

.chapter-specs h4 {
    margin: 0 0 1.25rem;
    font-size: 0.78rem;
}

.chapter-specs ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chapter-specs li {
    position: relative;
    margin: 0.55rem 0;
    padding-left: 0.85rem;
    color: rgba(5, 5, 5, 0.66);
    font-size: 0.76rem;
    line-height: 1.55;
}

.chapter-specs li::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background: var(--silver-dark);
    content: "";
}

.service-visual-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #e7eaec;
}

.chapter-mobile-visual {
    display: none;
}

.service-visual {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 700ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-visual.is-active {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}

.service-visual::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    content: "";
}

.service-visual img {
    height: 100%;
    object-fit: cover;
}

.service-visual figcaption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 0.4rem;
    background: rgba(244, 246, 247, 0.68);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(1rem);
}

.service-visual figcaption span {
    color: var(--plum);
}

.premium-package,
.service-process {
    padding: 8rem var(--page-pad);
}

.premium-package {
    background: var(--white);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28rem;
    gap: 1.5rem 4rem;
    margin-bottom: 3.5rem;
}

.section-heading > p {
    grid-column: 1 / -1;
}

.section-heading h2 {
    margin: 0;
    font-size: 4.7rem;
    font-weight: 700;
    line-height: 1;
}

.section-heading > span {
    align-self: end;
    color: rgba(5, 5, 5, 0.62);
    font-size: 0.92rem;
    line-height: 1.75;
}

.premium-mirror {
    --glare-x: 50%;
    --glare-y: 50%;
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 32rem;
    grid-template-columns: 0.72fr 1.28fr;
    overflow: hidden;
    border: 1px solid rgba(145, 155, 161, 0.64);
    border-radius: 0.5rem;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(196, 202, 206, 0.48), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 1.8rem 5rem rgba(27, 41, 48, 0.14), 0 0 1.8rem rgba(194, 203, 208, 0.22);
}

.premium-mirror::before {
    position: absolute;
    inset: -2px;
    z-index: 4;
    padding: 2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent 0 18%, rgba(255, 255, 255, 0.95) 24%, rgba(134, 147, 154, 0.7) 30%, transparent 38% 72%, rgba(233, 238, 241, 0.88) 82%, transparent 90%);
    content: "";
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: silver-border 6s linear infinite;
}

.premium-mirror::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.28) 14%, transparent 38%);
    content: "";
    opacity: 0.74;
    pointer-events: none;
    transition: opacity 260ms ease;
}

@keyframes silver-border {
    to {
        transform: rotate(1turn);
    }
}

.premium-mirror-heading,
.premium-steps {
    position: relative;
    z-index: 2;
}

.premium-mirror-heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    border-right: 1px solid var(--line);
}

.premium-mirror-heading > span {
    color: var(--deep-sea);
    font-family: "Inter", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
}

.premium-mirror-heading strong {
    font-family: "Inter", sans-serif;
    font-size: 2.6rem;
    line-height: 1.05;
}

.premium-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-steps article {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    border-right: 1px solid var(--line);
}

.premium-steps article:last-child {
    border-right: 0;
}

.premium-steps article > span {
    margin-bottom: auto;
    color: var(--plum);
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.premium-steps h3 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.premium-steps p {
    margin: 0;
    color: rgba(5, 5, 5, 0.64);
    font-size: 0.8rem;
    line-height: 1.68;
}

.service-process {
    border-top: 1px solid var(--line);
    background: var(--paper);
}

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

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--black);
    list-style: none;
}

.process-list li {
    display: flex;
    min-height: 18rem;
    flex-direction: column;
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-right: 1px solid var(--line);
}

.process-list li + li {
    padding-left: 1.5rem;
}

.process-list li:last-child {
    border-right: 0;
}

.process-list span {
    margin-bottom: auto;
    color: var(--plum);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.process-list strong {
    margin-bottom: 0.9rem;
    font-size: 1.5rem;
}

.process-list p {
    max-width: 15rem;
    margin: 0;
    color: rgba(5, 5, 5, 0.62);
    font-size: 0.8rem;
    line-height: 1.65;
}

.service-cta {
    display: grid;
    min-height: 78vh;
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: end;
    gap: 4rem;
    padding: 8rem var(--page-pad) 4rem;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.cta-copy > p {
    margin: 0 0 1.5rem;
    color: var(--deep-sea);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.cta-copy h2 {
    max-width: 64rem;
    margin: 0;
    font-size: 6.2rem;
    font-weight: 700;
    line-height: 1.04;
}

.cta-link {
    display: flex;
    min-height: 11rem;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(196, 202, 206, 0.45));
    box-shadow: inset 0 1px 0 #fff, 0 1rem 3rem rgba(35, 47, 53, 0.1);
    transition: color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.cta-link:hover,
.cta-link:focus-visible {
    background: var(--deep-sea);
    color: var(--white);
    box-shadow: 0 0 2.5rem rgba(22, 75, 89, 0.28);
    outline: none;
}

.cta-link span {
    font-size: 1rem;
    font-weight: 700;
}

.cta-link strong {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.service-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 7rem;
    padding: 1.5rem var(--page-pad);
    background: var(--black);
    color: var(--white);
}

.service-footer > span {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.service-footer a {
    font-size: 0.72rem;
}

.service-footer small {
    justify-self: end;
    color: rgba(255, 255, 255, 0.56);
    font-family: "Inter", sans-serif;
    font-size: 0.62rem;
}

.service-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 2000;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid var(--black);
    background: rgba(255, 255, 255, 0.86);
    color: var(--black);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0.8rem);
    transition: opacity 240ms ease, background 240ms ease, color 240ms ease;
}

.service-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.service-top:hover,
.service-top:focus-visible {
    background: var(--black);
    color: var(--white);
    outline: none;
}

.reveal {
    opacity: 0;
    transform: translateY(1.75rem);
    transition: opacity 850ms ease, transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1280px) {
    :root {
        --page-pad: 2.25rem;
    }

    .service-hero h1 {
        font-size: 8rem;
    }

    .catalog-layout {
        grid-template-columns: 11rem minmax(25rem, 1fr) minmax(25rem, 38vw);
    }

    .chapter-heading h3 {
        font-size: 2.8rem;
    }

    .service-chapter {
        padding-right: 2.25rem;
        padding-left: 2.25rem;
    }

    .cta-copy h2 {
        font-size: 5.2rem;
    }
}

@media (max-width: 960px) {
    :root {
        --page-pad: 1.5rem;
    }

    .service-main-menu {
        left: var(--page-pad);
        width: calc(100% - 10rem);
    }

    .service-hero h1 {
        font-size: 6rem;
    }

    .service-index {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-index a {
        min-height: 5rem;
        border-bottom: 1px solid var(--line);
    }

    .catalog-layout {
        grid-template-columns: 11rem minmax(0, 1fr);
    }

    .service-visual-stage {
        display: none;
    }

    .service-chapter {
        min-height: auto;
        padding: 5.5rem 2.25rem 4rem;
    }

    .chapter-mobile-visual {
        position: relative;
        display: block;
        aspect-ratio: 4 / 3;
        margin: 2.5rem 0 0 2.05rem;
        overflow: hidden;
        border-radius: 0.4rem;
        background: #e3e6e7;
    }

    .chapter-mobile-visual img {
        height: 100%;
        object-fit: cover;
    }

    .chapter-mobile-visual figcaption {
        position: absolute;
        right: 0.8rem;
        bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.65rem 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 0.35rem;
        background: rgba(246, 248, 248, 0.74);
        font-family: "Inter", sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        backdrop-filter: blur(0.8rem);
    }

    .chapter-mobile-visual figcaption span {
        color: var(--plum);
    }

    .premium-mirror {
        grid-template-columns: 1fr;
    }

    .premium-mirror-heading {
        min-height: 14rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-heading,
    .service-cta {
        grid-template-columns: 1fr;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-list li:nth-child(2) {
        border-right: 0;
    }

    .process-list li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .cta-copy h2 {
        font-size: 4.5rem;
    }
}

@media (min-width: 721px) and (max-width: 960px) {
    .service-footer small {
        margin-right: 4rem;
    }
}

@media (max-width: 720px) {
    :root {
        --page-pad: 1.25rem;
    }

    .floating-language-switch {
        top: max(0.75rem, env(safe-area-inset-top));
        right: max(0.75rem, env(safe-area-inset-right));
        width: 5.35rem;
        min-height: 2.3rem;
    }

    .floating-language-switch a {
        font-size: 0.64rem;
    }

    .service-main-menu {
        top: 4.1rem;
        left: var(--page-pad);
        right: var(--page-pad);
        width: auto;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.125rem;
    }

    .service-main-menu a {
        min-width: 0;
        min-height: 2rem;
        justify-content: center;
        padding: 0.5rem 0.1rem;
        border-radius: 0.35rem;
        font-size: 0.625rem;
        text-align: center;
    }

    .service-hero {
        min-height: 0;
        overflow: hidden;
    }

    .service-hero-copy {
        min-height: 76svh;
        justify-content: flex-end;
        padding: 10rem var(--page-pad) 3.5rem;
    }

    .service-hero-visual {
        opacity: 0.17;
    }

    .service-eyebrow {
        max-width: 13rem;
        font-size: 0.62rem;
        line-height: 1.45;
    }

    .service-hero h1 {
        margin: 1.2rem 0 1.6rem;
        font-size: 3.75rem;
        line-height: 0.86;
    }

    .service-hero-description {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .service-hero-description br {
        display: none;
    }

    .service-index {
        position: relative;
        inset: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0 var(--page-pad) var(--page-pad);
    }

    .service-index a {
        min-height: 5.4rem;
        padding: 0.85rem;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .service-index a:nth-child(2n) {
        border-right: 0;
    }

    .service-index a:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .service-index strong {
        font-size: 0.76rem;
    }

    .catalog-intro {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        padding: 5.5rem var(--page-pad);
    }

    .catalog-intro > p:first-child,
    .catalog-intro h2,
    .catalog-intro > p:last-child {
        grid-column: 1;
        grid-row: auto;
    }

    .catalog-intro h2 {
        font-size: 2.55rem;
        line-height: 1.14;
    }

    .catalog-intro > p:last-child {
        padding: 0;
        font-size: 0.88rem;
        line-height: 1.8;
    }

    .catalog-layout {
        display: block;
    }

    .catalog-rail {
        position: sticky;
        top: 0;
        z-index: 1200;
        width: 100%;
        height: auto;
        padding: 0.55rem var(--page-pad);
        overflow: hidden;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        background: rgba(247, 248, 248, 0.86);
        box-shadow: 0 0.55rem 1.5rem rgba(31, 43, 49, 0.08);
        backdrop-filter: blur(1rem) saturate(120%);
    }

    .catalog-rail > p {
        display: none;
    }

    .catalog-rail nav {
        flex-direction: row;
        gap: 0;
        margin: 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .catalog-rail nav::-webkit-scrollbar {
        display: none;
    }

    .catalog-rail a {
        display: flex;
        flex: 0 0 auto;
        grid-template-columns: none;
        gap: 0.45rem;
        padding: 0.75rem 0.9rem;
        border-right: 1px solid rgba(35, 45, 50, 0.12);
        border-bottom: 0;
        font-size: 0.62rem;
        white-space: nowrap;
    }

    .catalog-rail a:hover,
    .catalog-rail a:focus-visible,
    .catalog-rail a.is-active {
        padding-left: 0.9rem;
        background: rgba(211, 216, 219, 0.42);
    }

    .catalog-chapters {
        border-right: 0;
    }

    .service-chapter {
        min-height: 0;
        padding: 5rem var(--page-pad) 3.5rem;
        scroll-margin-top: 3.6rem;
    }

    .chapter-heading {
        gap: 0.65rem 0.85rem;
    }

    .chapter-heading > span {
        font-size: 0.72rem;
    }

    .chapter-heading > p {
        font-size: 0.56rem;
    }

    .chapter-heading h3 {
        font-size: 2.25rem;
        line-height: 1.04;
    }

    .chapter-heading strong {
        font-size: 0.9rem;
    }

    .chapter-copy {
        margin: 2.2rem 0;
        padding-left: 0;
    }

    .chapter-copy p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .chapter-specs {
        grid-template-columns: 1fr;
        margin-left: 0;
    }

    .chapter-specs section {
        padding: 1.5rem 0;
    }

    .chapter-specs section + section {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .chapter-mobile-visual {
        aspect-ratio: 4 / 3;
        margin: 2rem 0 0;
    }

    .premium-package,
    .service-process {
        padding: 5.5rem var(--page-pad);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        margin-bottom: 2.5rem;
    }

    .section-heading > p,
    .section-heading h2,
    .section-heading > span {
        grid-column: 1;
    }

    .section-heading h2 {
        font-size: 2.7rem;
        line-height: 1.08;
    }

    .section-heading > span {
        font-size: 0.84rem;
        line-height: 1.75;
    }

    .premium-mirror {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .premium-mirror-heading {
        min-height: 12rem;
        padding: 1.5rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .premium-mirror-heading strong {
        font-size: 1.9rem;
    }

    .premium-steps {
        grid-template-columns: 1fr;
    }

    .premium-steps article {
        min-height: 13rem;
        padding: 1.5rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .premium-steps article:last-child {
        border-bottom: 0;
    }

    .premium-steps article > span {
        font-size: 1.65rem;
    }

    .premium-steps h3 {
        font-size: 1.12rem;
    }

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

    .process-list li,
    .process-list li + li {
        display: grid;
        min-height: 0;
        grid-template-columns: 2.8rem minmax(0, 1fr);
        padding: 1.4rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .process-list li:last-child {
        border-bottom: 0;
    }

    .process-list span {
        grid-row: 1 / 3;
        margin: 0;
    }

    .process-list strong {
        margin-bottom: 0.6rem;
        font-size: 1.2rem;
    }

    .process-list p {
        font-size: 0.76rem;
    }

    .service-cta {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 6rem var(--page-pad) 2.5rem;
    }

    .cta-copy h2 {
        font-size: 3.15rem;
        line-height: 1.08;
    }

    .cta-link {
        min-height: 9rem;
        padding: 1.25rem;
    }

    .service-footer {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1.4rem 1rem;
        min-height: 0;
        padding: 1.6rem var(--page-pad);
    }

    .service-footer small {
        grid-column: 1 / -1;
        justify-self: start;
        line-height: 1.5;
    }

    .service-top {
        right: 0.75rem;
        bottom: 0.75rem;
        width: 2.75rem;
        height: 2.75rem;
    }
}

@media (max-width: 380px) {
    .service-hero h1 {
        font-size: 3.5rem;
    }

    .service-main-menu a {
        font-size: 0.57rem;
    }

    .chapter-heading h3 {
        font-size: 2.05rem;
    }

    .cta-copy h2 {
        font-size: 2.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .premium-mirror::before {
        animation: none;
    }

    .service-visual {
        transition: none;
    }
}
