:root {
    --ink: #171b1f;
    --ink-2: #22282e;
    --ink-3: #303840;
    --paper: #f4f0e8;
    --paper-2: #e8e1d6;
    --white: #fffdfa;
    --text: #2e3439;
    --muted: #5b6268;
    --bronze: #89552c;
    --bronze-2: #c39a70;
    --line: rgba(23, 27, 31, .14);
    --shadow: 0 22px 70px rgba(24, 28, 31, .10);
    --container: 1200px;
    --header-height: 92px;
    --radius: 2px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--bronze-2);
    outline-offset: 4px;
}

::selection {
    background: var(--bronze-2);
    color: var(--ink);
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.025em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h2 {
    font-size: clamp(2.15rem, 4vw, 4rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(calc(100% - 40px), 780px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 11px 16px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: var(--bronze);
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .17em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}

.section-heading h2 {
    max-width: 820px;
    margin-bottom: 0;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(23, 27, 31, .97);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.nav-shell {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.brand {
    flex: 0 0 auto;
    text-decoration: none;
}

.brand img {
    width: 188px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-list,
.subnav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a,
.subnav-trigger {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    cursor: pointer;
    font-size: .87rem;
    font-weight: 650;
    letter-spacing: .035em;
    text-decoration: none;
}

.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"],
.subnav-trigger:hover,
.has-subnav.is-current > a {
    color: var(--bronze-2);
}

.has-subnav {
    display: flex;
    align-items: center;
}

.subnav-trigger {
    width: 32px;
    justify-content: center;
    padding: 0;
}

.subnav-trigger svg {
    width: 15px;
    transition: transform .2s ease;
}

.subnav {
    position: absolute;
    top: calc(100% + 10px);
    right: -22px;
    display: grid;
    width: min(680px, calc(100vw - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: var(--ink-2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

.has-subnav.is-open .subnav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.has-subnav.is-open .subnav-trigger svg {
    transform: rotate(180deg);
}

.subnav a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 9px;
    padding: 11px 12px;
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
    line-height: 1.25;
    text-decoration: none;
}

.subnav a:hover,
.subnav a[aria-current="page"] {
    background: rgba(255, 255, 255, .05);
    color: var(--white);
}

.subnav-index {
    color: var(--bronze-2);
    font-family: Georgia, "Times New Roman", serif;
}

.header-phone {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(195, 154, 112, .55);
    color: var(--white);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.header-phone:hover {
    background: var(--bronze-2);
    color: var(--ink);
}

.header-phone svg {
    width: 17px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle svg {
    width: 23px;
}

.hero {
    display: grid;
    min-height: min(720px, calc(100svh - var(--header-height)));
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    background: var(--ink);
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 92px max(40px, calc((100vw - var(--container)) / 2)) 92px max(40px, calc((100vw - var(--container)) / 2));
    color: rgba(255, 255, 255, .76);
}

.hero-copy::before {
    position: absolute;
    top: 0;
    left: clamp(20px, 7vw, 120px);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(195, 154, 112, .28), transparent);
    content: "";
}

.hero-copy-inner {
    position: relative;
    max-width: 720px;
}

.hero h1 {
    margin-bottom: 30px;
    color: var(--white);
    font-size: clamp(3.2rem, 6.2vw, 6.5rem);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow {
    color: var(--bronze-2);
}

.hero-lead {
    max-width: 630px;
    margin-bottom: 38px;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.65;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 23px;
    border: 1px solid var(--bronze);
    background: var(--bronze);
    color: var(--white);
    font-size: .83rem;
    font-weight: 750;
    letter-spacing: .065em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
    border-color: var(--bronze-2);
    background: var(--bronze-2);
    color: var(--ink);
    transform: translateY(-2px);
}

.button-secondary {
    border-color: rgba(255, 255, 255, .35);
    background: transparent;
}

.button-secondary:hover {
    border-color: var(--white);
    background: var(--white);
}

.button-dark {
    border-color: var(--ink);
    background: var(--ink);
}

.button svg {
    width: 17px;
}

.hero-note {
    max-width: 620px;
    margin-top: 34px;
    color: rgba(255, 255, 255, .48);
    font-size: .78rem;
    line-height: 1.55;
}

.hero-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: var(--ink-2);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .65s ease;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
    height: 100%;
}

.hero-slide img {
    object-fit: cover;
}

.hero-slide::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 27, 31, .3), transparent 38%), linear-gradient(0deg, rgba(23, 27, 31, .45), transparent 38%);
    content: "";
}

.carousel-controls {
    position: absolute;
    right: 26px;
    bottom: 26px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(23, 27, 31, .55);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.carousel-button:hover {
    border-color: var(--bronze-2);
    background: var(--bronze);
}

.carousel-button svg {
    width: 19px;
}

.carousel-count {
    min-width: 62px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    text-align: center;
}

.section {
    padding: 110px 0;
}

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

.section-dark {
    background: var(--ink);
    color: rgba(255, 255, 255, .7);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .section-heading p {
    color: rgba(255, 255, 255, .72);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
    gap: clamp(50px, 9vw, 130px);
    align-items: start;
}

.intro-grid h2 {
    max-width: 760px;
    margin-bottom: 34px;
}

.intro-copy {
    color: var(--muted);
    font-size: 1.06rem;
}

.intro-aside {
    padding: 32px 0 0 30px;
    border-left: 1px solid var(--bronze-2);
}

.intro-aside strong {
    display: block;
    margin-bottom: 16px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.activity-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.activity-index-item {
    position: relative;
    min-height: 250px;
    padding: 34px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.activity-index-item:hover {
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
}

.activity-index-number {
    display: block;
    margin-bottom: 44px;
    color: var(--bronze);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.activity-index-item h3 {
    margin-bottom: 15px;
    transition: color .25s ease;
}

.activity-index-item:hover h3 {
    color: var(--white);
}

.activity-index-item p {
    color: var(--muted);
    font-size: .91rem;
    line-height: 1.55;
    transition: color .25s ease;
}

.activity-index-item:hover p {
    color: rgba(255, 255, 255, .58);
}

.activity-index-item:hover .activity-index-number,
.activity-index-item:hover .activity-index-arrow {
    color: var(--bronze-2);
}

.activity-index-arrow {
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 22px;
    color: var(--bronze);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.method-card {
    padding: 38px 34px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.method-card span {
    display: block;
    margin-bottom: 48px;
    color: var(--bronze-2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
}

.method-card h3 {
    margin-bottom: 17px;
}

.method-card p {
    color: rgba(255, 255, 255, .58);
    font-size: .94rem;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: clamp(50px, 9vw, 120px);
    align-items: start;
}

.home-faq-grid h2 {
    margin-bottom: 26px;
}

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

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

.faq-item summary {
    display: grid;
    grid-template-columns: 1fr 28px;
    gap: 24px;
    align-items: center;
    padding: 27px 0;
    color: var(--ink);
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.24rem;
    line-height: 1.35;
    list-style: none;
}

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

.faq-item summary::after {
    width: 12px;
    height: 12px;
    justify-self: center;
    border-right: 1px solid var(--bronze);
    border-bottom: 1px solid var(--bronze);
    content: "";
    transform: rotate(45deg) translate(-3px, -3px);
    transition: transform .2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

.faq-answer {
    max-width: 760px;
    padding: 0 52px 28px 0;
    color: var(--muted);
}

.contact-band {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: var(--bronze);
    color: var(--white);
}

.contact-band::after {
    position: absolute;
    top: -110px;
    right: -80px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    content: "";
}

.contact-band-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.contact-band h2 {
    max-width: 820px;
    margin-bottom: 14px;
    color: var(--white);
}

.contact-band p {
    color: var(--white);
}

.contact-band .button {
    border-color: var(--ink);
    background: var(--ink);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 92px;
    background: var(--ink);
    color: rgba(255, 255, 255, .68);
}

.page-hero::after {
    position: absolute;
    top: -220px;
    right: -80px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(195, 154, 112, .18);
    border-radius: 50%;
    content: "";
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 430px);
    gap: 70px;
    align-items: end;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(3.1rem, 6.2vw, 6.2rem);
}

.page-hero-copy {
    padding-bottom: 10px;
    font-size: 1.06rem;
}

.breadcrumbs {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--muted);
    font-size: .77rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 9px;
    color: var(--bronze);
    content: "/";
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--bronze);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.activity-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.activity-card-media {
    position: relative;
    aspect-ratio: 7 / 5;
    overflow: hidden;
    background: var(--paper-2);
}

.activity-card-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(23, 27, 31, .32));
    content: "";
}

.activity-card-media picture,
.activity-card-media img {
    width: 100%;
    height: 100%;
}

.activity-card-media img {
    object-fit: cover;
    transition: transform .5s ease;
}

.activity-card:hover img {
    transform: scale(1.025);
}

.activity-card-index {
    position: absolute;
    right: 18px;
    bottom: 13px;
    z-index: 2;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.activity-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 30px;
}

.activity-card h2,
.activity-card h3 {
    margin-bottom: 15px;
    font-size: 1.55rem;
}

.activity-card p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: .92rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--bronze);
    font-size: .8rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link svg {
    width: 17px;
    transition: transform .2s ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(50px, 9vw, 120px);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual picture,
.about-visual img {
    width: 100%;
}

.about-visual img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 72% center;
}

.about-visual::after {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 45%;
    height: 45%;
    border-right: 1px solid var(--bronze);
    border-bottom: 1px solid var(--bronze);
    content: "";
}

.prose {
    color: var(--muted);
}

.prose h2,
.prose h3 {
    margin-top: 1.4em;
    color: var(--ink);
}

.prose h2:first-child,
.prose h3:first-child {
    margin-top: 0;
}

.prose p,
.prose ul,
.prose ol {
    margin-bottom: 1.25em;
}

.prose a {
    color: var(--bronze);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.principle {
    padding: 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principle span {
    display: block;
    margin-bottom: 36px;
    color: var(--bronze);
    font-family: Georgia, "Times New Roman", serif;
}

.principle h3 {
    margin-bottom: 14px;
}

.principle p {
    color: var(--muted);
    font-size: .94rem;
}

.service-hero {
    padding: 80px 0 0;
    background: var(--paper);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.service-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.service-hero-lead {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.12rem;
}

.service-hero-media {
    min-height: 490px;
    align-self: stretch;
}

.service-hero-media picture,
.service-hero-media img {
    width: 100%;
    height: 100%;
}

.service-hero-media img {
    object-fit: cover;
}

.service-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

.service-intro {
    margin-bottom: 45px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    line-height: 1.38;
}

.topic-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    margin: 34px 0 42px;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.topic-list li {
    position: relative;
    padding: 16px 0 16px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: .93rem;
}

.topic-list li::before {
    position: absolute;
    top: 26px;
    left: 0;
    width: 7px;
    height: 1px;
    background: var(--bronze);
    content: "";
}

.service-aside {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    padding: 30px;
    border-top: 3px solid var(--bronze);
    background: var(--paper);
}

.service-aside h2 {
    margin-bottom: 20px;
    font-size: 1.45rem;
}

.service-aside ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.service-aside li {
    border-bottom: 1px solid var(--line);
}

.service-aside li:first-child {
    border-top: 1px solid var(--line);
}

.service-aside a:not(.button) {
    display: block;
    padding: 13px 0;
    color: var(--muted);
    font-size: .86rem;
    text-decoration: none;
}

.service-aside a:hover {
    color: var(--bronze);
}

.service-aside .button {
    width: 100%;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
    gap: clamp(55px, 10vw, 140px);
    align-items: start;
}

.contact-phone {
    display: block;
    margin: 30px 0 35px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.15;
    text-decoration: none;
}

.contact-phone:hover {
    color: var(--bronze);
}

.contact-card {
    padding: 38px;
    border-top: 3px solid var(--bronze);
    background: var(--paper);
}

.contact-card h2 {
    margin-bottom: 22px;
    font-size: 1.55rem;
}

.contact-card ol {
    margin: 0;
    padding: 0;
    counter-reset: contact;
    list-style: none;
}

.contact-card li {
    position: relative;
    padding: 18px 0 18px 43px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .9rem;
}

.contact-card li::before {
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--bronze);
    content: "0" counter(contact);
    counter-increment: contact;
    font-family: Georgia, "Times New Roman", serif;
}

.notice {
    padding: 24px 26px;
    border-left: 3px solid var(--bronze);
    background: var(--paper);
    color: var(--muted);
    font-size: .9rem;
}

.legal-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 45px;
}

.legal-index a {
    padding: 24px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    text-decoration: none;
}

.legal-index a:hover {
    border-color: var(--bronze);
    color: var(--bronze);
}

.site-footer {
    padding: 78px 0 26px;
    background: #111417;
    color: rgba(255, 255, 255, .55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 70px;
    padding-bottom: 60px;
}

.footer-brand img {
    width: 210px;
    height: auto;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 430px;
    font-size: .88rem;
}

.footer-heading {
    margin-bottom: 22px;
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: .75rem;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, .57);
    font-size: .87rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--bronze-2);
}

.footer-phone {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: .75rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal a {
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--bronze-2);
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 20;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top svg {
    width: 19px;
}

.not-found {
    display: grid;
    min-height: 70svh;
    place-items: center;
    padding: 80px 20px;
    background: var(--paper);
    text-align: center;
}

.not-found-code {
    margin-bottom: 12px;
    color: var(--bronze);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5rem, 16vw, 12rem);
    line-height: .85;
}

.not-found h1 {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.not-found p {
    max-width: 570px;
    margin: 0 auto 30px;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 18px;
    }

    .nav-list {
        gap: 17px;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 57% 43%;
    }

    .hero-copy {
        padding-right: 38px;
    }

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

@media (max-width: 900px) {
    :root {
        --header-height: 78px;
    }

    .container,
    .narrow {
        width: min(calc(100% - 32px), var(--container));
    }

    .brand img {
        width: 152px;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        overflow-y: auto;
        padding: 24px 20px 45px;
        background: var(--ink);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list {
        display: block;
    }

    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .nav-list > li > a,
    .subnav-trigger {
        min-height: 58px;
        font-size: 1rem;
    }

    .has-subnav {
        display: grid;
        grid-template-columns: 1fr 52px;
    }

    .subnav-trigger {
        width: 52px;
    }

    .subnav {
        position: static;
        display: none;
        width: auto;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        padding: 8px 0 18px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .has-subnav.is-open .subnav {
        display: grid;
    }

    .header-phone {
        margin: 24px 0 0;
        width: 100%;
    }

    .header-phone span {
        display: inline;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 600px;
        padding: 76px 28px 70px;
    }

    .hero-copy::before {
        left: 14px;
    }

    .hero-media {
        min-height: 440px;
        grid-row: 1;
    }

    .section,
    .contact-band {
        padding: 82px 0;
    }

    .section-heading,
    .intro-grid,
    .home-faq-grid,
    .page-hero-inner,
    .about-story,
    .service-hero-grid,
    .service-body-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 24px;
        margin-bottom: 45px;
    }

    .intro-grid,
    .home-faq-grid,
    .page-hero-inner,
    .about-story,
    .service-hero-grid,
    .service-body-grid,
    .contact-layout {
        gap: 48px;
    }

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

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

    .method-card {
        padding-inline: 0;
    }

    .method-card span {
        margin-bottom: 24px;
    }

    .contact-band-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 80px 0 72px;
    }

    .service-hero {
        padding-top: 65px;
    }

    .service-hero-media {
        min-height: 420px;
    }

    .service-aside {
        position: static;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .hero-media {
        min-height: 330px;
    }

    .hero-copy {
        min-height: 520px;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .hero-actions,
    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .button-row .button {
        width: 100%;
    }

    .carousel-controls {
        right: 16px;
        bottom: 16px;
    }

    .section,
    .contact-band {
        padding: 68px 0;
    }

    .activity-index,
    .activity-grid,
    .principles-grid,
    .topic-list,
    .legal-index {
        grid-template-columns: 1fr;
    }

    .activity-index-item {
        min-height: 220px;
        padding: 28px;
    }

    .activity-index-number {
        margin-bottom: 32px;
    }

    .activity-grid {
        gap: 20px;
    }

    .principle {
        padding: 32px 26px;
    }

    .about-visual::after {
        right: -8px;
        bottom: -8px;
    }

    .service-hero-media {
        min-height: 330px;
    }

    .service-body-grid {
        gap: 40px;
    }

    .contact-card {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .contact-band,
    .back-to-top,
    .carousel-controls,
    .breadcrumbs {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 11pt;
    }

    .section,
    .page-hero,
    .service-hero {
        padding: 25px 0;
        background: #fff;
        color: #000;
    }

    h1,
    h2,
    h3,
    .page-hero h1,
    .service-hero h1 {
        color: #000;
    }

    a {
        color: #000;
        text-decoration: none;
    }
}
