:root {
    color-scheme: light;
    --paper: #f7f5ef;
    --ink: #292f2c;
    --muted: #73756f;
    --accent: #b6573c;
    --accent-dark: #91432e;
    --line: #deded5;
    --serif: Georgia, 'Times New Roman', serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.modal-open {
    overflow: hidden;
}
h1, h2, h3, p {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
button, input, select, textarea {
    font: inherit;
}
button, a {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
}
img {
    display: block;
    max-width: 100%;
}
button, input, textarea, select {
    border-radius: 0;
}
button {
    color: inherit;
}
[hidden] {
    display: none !important;
}
::selection {
    background: #e5b8a4;
    color: var(--ink);
}
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 5px;
}
.shell {
    width: min(1240px, calc(100% - 112px));
    margin-inline: auto;
}
.section-pad {
    padding-block: 100px;
}
.icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}
.icon, .service-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    padding: 10px 20px;
    background: var(--ink);
    color: white;
    z-index: 50;
}
.skip-link:focus {
    top: 12px;
}
.site-header {
    border-bottom: 1px solid var(--line);
}
.header-inner {
    min-height: 100px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 39px;
    height: 43px;
    color: var(--accent);
}
.brand-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.55;
}
.brand-name > span {
    display: block;
    font-size: 17px;
    letter-spacing: 3.1px;
}
.brand-dot {
    color: var(--accent);
}
.desktop-nav {
    gap: 31px;
    margin-left: auto;
    margin-right: 38px;
    font-size: 12px;
}
.desktop-nav a {
    position: relative;
    padding-block: 12px;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 180ms ease;
}
.desktop-nav a:hover::after {
    width: 100%;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-height: 53px;
    padding: 15px 24px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    transition: background 180ms ease, border-color 180ms ease;
}
.button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}
.button .icon {
    width: 17px;
    height: 17px;
}
.button-small {
    min-height: 42px;
    padding: 11px 20px;
    gap: 28px;
}
.menu-toggle {
    display: none;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
    line-height: 1.6;
}
.eyebrow-line {
    width: 25px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}
h1, h2 {
    font-family: var(--serif);
    font-weight: 400;
}
body h2 {
    font-size: clamp(36px, 3.6vw, 50px);
    line-height: 1.13;
    letter-spacing: -1.6px;
}
em {
    font-weight: 400;
    color: var(--accent);
}
.hero {
    display: grid;
    grid-template-columns: 1fr 0.96fr;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 61px;
    align-items: center;
}
.hero-copy {
    padding-top: 2px;
}
.hero h1 {
    font-size: clamp(58px, 5.85vw, 83px);
    line-height: 1.04;
    letter-spacing: -3.3px;
    margin-top: 23px;
}
.hero-description {
    max-width: 375px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}
.hero-actions {
    gap: 24px;
    margin-top: 30px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    font-weight: 600;
    padding-block: 7px;
}
.text-link .icon {
    width: 17px;
    height: 17px;
    transition: transform 180ms ease;
}
.text-link:hover {
    color: var(--accent);
}
.text-link:hover .icon {
    transform: translateX(4px);
}
.hero-footnote {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 35px;
    color: var(--muted);
    font-size: 10px;
}
.small-cross {
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
}
.hero-visual {
    position: relative;
    padding-bottom: 26px;
}
.hero-image {
    width: 100%;
    height: 525px;
    object-fit: cover;
    object-position: center 54%;
}
.image-label {
    position: absolute;
    top: 20px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    background: rgba(247, 245, 239, 0.94);
    color: #454b43;
    font-size: 7px;
    letter-spacing: 1.1px;
}
.image-label span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}
.insight-card {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: -29px;
    right: 46px;
    bottom: 49px;
    padding: 21px;
    background: var(--paper);
    box-shadow: 0 8px 24px #242a2410;
}
.insight-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    background: #eee6dc;
    color: var(--accent);
}
.insight-icon .icon {
    width: 27px;
    height: 27px;
}
.insight-card p {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.2;
}
.insight-card div > span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 9px;
}
.insight-arrow {
    margin-left: auto;
    width: 19px;
    color: var(--accent);
}
.image-index {
    position: absolute;
    right: 0;
    bottom: 1px;
    font-size: 7px;
    letter-spacing: 1.4px;
    color: var(--muted);
}
.principles {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr 1.1fr;
    align-items: center;
    padding-block: 27px;
    border-top: 1px solid var(--line);
}
.principles > p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.7;
}
.principles strong {
    font-weight: 400;
    color: var(--ink);
}
.principles > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 40px;
    border-left: 1px solid var(--line);
    font-size: 11px;
}
.principles > div > span {
    color: var(--accent);
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
}
.expertise {
    background: #eeeee7;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: flex-end;
    margin-bottom: 43px;
}
.section-heading h2, .about h2, .contact-section h2 {
    margin-top: 19px;
}
.section-heading > p {
    max-width: 310px;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}
.service-grid {
    gap: 17px;
}
.service-card {
    display: flex;
    flex-direction: column;
    padding: 28px 25px 21px;
    border: 1px solid #dcded3;
    background: var(--paper);
    transition: border-color 180ms ease, transform 180ms ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}
.service-icon {
    width: 35px;
    height: 35px;
    color: var(--accent);
    stroke-width: 1.2;
}
.service-top > span {
    color: #95988e;
    font-family: var(--serif);
    font-size: 13px;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.service-card > p {
    margin-block: 18px 26px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}
.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    background: none;
    text-align: left;
    font-size: 10px;
}
.service-link .icon {
    width: 17px;
    height: 17px;
    color: var(--accent);
}
.service-link:hover {
    color: var(--accent);
}
.expertise-note {
    margin-top: 28px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}
.expertise-note a {
    margin-left: 13px;
    color: var(--accent);
}
.expertise-note a:hover {
    text-decoration: underline;
}
.about {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 88px;
    align-items: center;
}
.about-visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}
.photo-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    font-size: 8px;
    letter-spacing: 1.15px;
    color: var(--muted);
}
.caption-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}
.about-copy > p:not(.eyebrow) {
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}
.value-list {
    display: grid;
    gap: 10px;
    margin: 23px 0 20px;
    padding: 0;
    list-style: none;
    font-size: 11px;
}
.value-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.value-list .icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
}
.approach {
    background: #293630;
    color: var(--paper);
}
.approach .eyebrow {
    color: #d29b80;
}
.approach .section-heading > p {
    color: #b3bcb3;
}
.process-grid {
    gap: 50px;
    margin-top: 58px;
}
.process-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid #536055;
    color: #d29b80;
}
.process-number > span {
    font-family: var(--serif);
    font-size: 29px;
    font-style: italic;
}
.process-number .icon {
    width: 19px;
}
.process-grid h3 {
    margin-top: 24px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}
.process-grid p {
    margin-top: 12px;
    color: #b3bcb3;
    font-size: 13px;
    line-height: 1.9;
}
.process-tag {
    display: block;
    margin-top: 26px;
    color: #d29b80;
    font-size: 8px;
    letter-spacing: 1.6px;
}
.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding-block: 95px;
}
.contact-section h2 {
    font-size: clamp(36px, 4vw, 55px);
}
.contact-section p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 12px;
    color: var(--muted);
}
.contact-button {
    min-width: 219px;
}
.site-footer {
    border-top: 1px solid var(--line);
}
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.05fr 0.85fr;
    gap: 50px;
    padding-block: 51px;
}
.footer-brand > p {
    margin-top: 17px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}
.footer-column h3 {
    margin-bottom: 19px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--muted);
}
.footer-column > a {
    display: block;
    width: fit-content;
    margin-top: 9px;
    font-size: 13px;
}
.footer-column a:hover {
    color: var(--accent);
}
.footer-email span {
    margin-left: 9px;
    color: var(--accent);
}
.footer-column address {
    font-size: 11px;
    font-style: normal;
    line-height: 2;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 23px;
    border-top: 1px solid var(--line);
    font-size: 9px;
    color: var(--muted);
}
.footer-bottom > span {
    margin-right: 55px;
}
.footer-bottom a span {
    margin-left: 12px;
    color: var(--accent);
}
.site-dialog {
    width: min(560px, calc(100% - 32px));
    max-height: calc(100dvh - 48px);
    margin: auto;
    padding: 43px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    overflow-y: auto;
}
.site-dialog::backdrop {
    background: #162019a6;
    backdrop-filter: blur(4px);
}
.dialog-close {
    position: absolute;
    top: 13px;
    right: 13px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 0;
    background: transparent;
}
.dialog-close:hover {
    background: #e9e7df;
}
.site-dialog h2 {
    margin-top: 18px;
    font-size: 39px;
}
.dialog-intro {
    margin-top: 17px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}
.dialog-subheading {
    margin-top: 26px;
    font-size: 13px;
    font-weight: 600;
}
.dialog-points {
    display: grid;
    gap: 12px;
    margin: 14px 0 30px;
    padding-left: 17px;
    color: var(--muted);
    font-size: 13px;
}
.dialog-points li::marker {
    color: var(--accent);
}
#consultation-form {
    margin-top: 23px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-field {
    margin-bottom: 16px;
}
.form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 600;
}
.form-field label span {
    color: var(--accent);
}
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #cccec4;
    background: #fdfcf9;
    color: var(--ink);
    font-size: 13px;
}
.form-field textarea {
    display: block;
    resize: vertical;
}
.form-note {
    margin-bottom: 18px;
    font-size: 11px;
    color: var(--muted);
}
.email-result {
    margin-top: 20px;
    padding: 16px;
    border-left: 2px solid #4b6c52;
    background: #e9eee5;
    font-size: 12px;
}
.email-result p {
    margin-top: 5px;
}
.direct-contact {
    margin-top: 23px;
    font-size: 11px;
    color: var(--muted);
}
.direct-contact a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (min-width: 1600px) {
    .hero {
        padding-top: 75px;
        padding-bottom: 72px;
    }
    .hero-image {
        height: 560px;
    }
}
@media (max-width: 1100px) {
    .shell {
        width: calc(100% - 72px);
    }
    .desktop-nav {
        gap: 24px;
        margin-right: 12px;
    }
    .hero {
        gap: 42px;
    }
    .hero h1 {
        font-size: 68px;
    }
    .hero-image {
        height: 510px;
    }
    .hero-actions {
        gap: 18px;
    }
    .hero-actions .button {
        padding-inline: 18px;
        gap: 14px;
    }
    .hero-actions .text-link {
        gap: 9px;
    }
    .insight-card {
        right: 16px;
        left: -20px;
        padding: 17px;
        gap: 12px;
    }
    .insight-card p {
        font-size: 18px;
    }
    .about {
        gap: 48px;
    }
    .service-grid {
        gap: 16px;
    }
    .service-card {
        padding-inline: 22px;
    }
    .footer-main {
        gap: 32px;
    }
}
@media (max-width: 1023px) and (min-width: 768px) {
    .service-card > p {
        max-width: 290px;
    }
    .principles {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .principles > div:nth-child(3) {
        border-left: 0;
        justify-content: flex-start;
    }
    .principles > div {
        justify-content: flex-start;
        padding-left: 25px;
    }
    .principles > div:nth-child(3) {
        padding-left: 0;
    }
    .hero h1 {
        font-size: 59px;
    }
    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .hero-image {
        height: 475px;
    }
    .image-label {
        right: 10px;
        font-size: 6px;
    }
    .insight-card {
        right: 10px;
        left: -17px;
        gap: 10px;
        padding: 15px 12px;
    }
    .insight-icon {
        width: 32px;
        height: 37px;
    }
    .insight-card p {
        font-size: 16px;
    }
    .insight-card div > span {
        font-size: 8px;
    }
    .insight-arrow {
        display: none;
    }
    .about {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .about .eyebrow {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .address-column {
        grid-column: 2;
    }
}
@media (max-width: 767px) {
    html {
        scroll-padding-top: 24px;
    }
    .shell {
        width: calc(100% - 44px);
    }
    .section-pad {
        padding-block: 62px;
    }
    .header-inner {
        min-height: 83px;
        gap: 16px;
    }
    .brand-mark {
        width: 33px;
        height: 37px;
    }
    .brand-name {
        font-size: 10px;
        letter-spacing: 1.7px;
    }
    .brand-name > span {
        font-size: 15px;
        letter-spacing: 2.3px;
    }
    .header-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        width: 44px;
        height: 44px;
        padding: 10px;
        border: 1px solid var(--line);
        background: none;
    }
    .menu-toggle span {
        height: 1px;
        width: 22px;
        background: var(--ink);
        transition: transform 180ms ease;
    }
    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(4px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }
    .mobile-nav {
        padding: 8px 22px 22px;
        border-top: 1px solid var(--line);
    }
    .mobile-nav a {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        font-size: 14px;
    }
    .mobile-nav a:last-child {
        color: var(--accent);
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 42px;
        padding-bottom: 32px;
    }
    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1.35px;
    }
    .hero h1 {
        margin-top: 22px;
        font-size: clamp(58px, 12.8vw, 82px);
        letter-spacing: -2.9px;
    }
    .hero-description {
        max-width: 410px;
        font-size: 13px;
        margin-top: 22px;
    }
    .hero-actions {
        gap: 20px;
        margin-top: 25px;
    }
    .hero-actions .button {
        padding-inline: 18px;
        gap: 22px;
    }
    .hero-actions .text-link {
        font-size: 10px;
        gap: 7px;
    }
    .hero-footnote {
        margin-top: 24px;
    }
    .hero-visual {
        margin-left: 10px;
    }
    .hero-image {
        height: 410px;
        object-position: center 55%;
    }
    .insight-card {
        left: -10px;
        right: 20px;
        bottom: 49px;
        padding: 18px 14px;
    }
    .insight-card p {
        font-size: 18px;
    }
    .insight-card div > span {
        font-size: 8px;
    }
    .image-label {
        top: 16px;
        right: 13px;
        font-size: 6px;
    }
    .principles {
        grid-template-columns: 1fr 1fr;
        gap: 21px 12px;
        padding-block: 24px 30px;
    }
    .principles > p {
        font-size: 10px;
    }
    .principles > div {
        justify-content: flex-start;
        gap: 9px;
        padding-left: 17px;
        font-size: 10px;
    }
    .principles > div:nth-child(3) {
        padding-left: 0;
        border: 0;
    }
    .principles > div > span {
        font-size: 13px;
    }
    .section-heading {
        display: block;
        margin-bottom: 30px;
    }
    body h2 {
        font-size: 39px;
        letter-spacing: -1.6px;
    }
    .section-heading > p {
        margin-top: 24px;
        max-width: 400px;
        font-size: 13px;
    }
    .service-grid {
        gap: 14px;
        grid-template-columns: 1fr 1fr;
    }
    .service-card {
        padding: 23px 19px 18px;
    }
    .service-card h3 {
        font-size: 24px;
    }
    .service-card > p {
        font-size: 12px;
    }
    .service-top {
        margin-bottom: 24px;
    }
    .expertise-note {
        line-height: 1.9;
    }
    .expertise-note a {
        display: block;
        margin-left: 0;
        margin-top: 7px;
    }
    .about {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-visual img {
        height: 335px;
    }
    .about-copy > p:not(.eyebrow) {
        font-size: 13px;
    }
    .value-list {
        font-size: 12px;
        gap: 13px;
    }
    .about-copy .text-link {
        font-size: 12px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 35px;
    }
    .process-number {
        padding-bottom: 13px;
    }
    .process-grid h3 {
        margin-top: 19px;
        font-size: 28px;
    }
    .process-grid p {
        max-width: 430px;
        font-size: 13px;
    }
    .process-tag {
        margin-top: 19px;
    }
    .contact-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding-block: 61px;
    }
    .contact-section h2 {
        font-size: clamp(34px, 8.5vw, 48px);
    }
    .contact-section p:not(.eyebrow) {
        max-width: 290px;
        line-height: 1.8;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 20px;
        padding-block: 38px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-column > a {
        font-size: 12px;
        overflow-wrap: anywhere;
    }
    .footer-email span {
        margin-left: 2px;
    }
    .footer-column address {
        font-size: 10px;
    }
    .footer-column h3 {
        margin-bottom: 13px;
        font-size: 8px;
    }
    .footer-bottom {
        flex-wrap: wrap;
        gap: 14px;
        font-size: 9px;
    }
    .footer-bottom > span {
        display: none;
    }
    .site-dialog {
        padding: 37px 23px 26px;
        max-height: calc(100dvh - 32px);
    }
    .site-dialog h2 {
        font-size: 34px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-field input, .form-field textarea, .form-field select {
        font-size: 16px;
    }
}
@media (max-width: 420px) {
    .hero-actions {
        gap: 16px;
    }
    .hero-actions .button {
        gap: 16px;
        padding-inline: 16px;
        font-size: 11px;
    }
    .hero-actions .text-link {
        font-size: 9px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 26px;
    }
    .service-card h3 br {
        display: none;
    }
    .service-card h3 {
        font-size: 28px;
    }
    .service-top {
        margin-bottom: 21px;
    }
    .service-card > p {
        max-width: 310px;
        font-size: 13px;
    }
    .service-link {
        min-height: 44px;
        font-size: 12px;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-column > a, .footer-column address {
        font-size: 12px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        transition: none !important;
    }
}
