:root {
    --cream: #fafaf7;
    --cream-2: #f3efe6;
    --amber: #c8963e;
    --amber-dark: #a9792f;
    --brown: #2c1a0e;
    --choco: #20140d;
    --muted: #766a5e;
    --line: rgba(44, 26, 14, .12);
    --shadow: 0 24px 70px rgba(44, 26, 14, .12);
    --serif: "Cormorant", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--choco);
    font-family: var(--sans);
    line-height: 1.6;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(90deg, rgba(44, 26, 14, .035) 1px, transparent 1px),
        radial-gradient(circle at 20% 10%, rgba(200, 150, 62, .08), transparent 28rem);
    background-size: 120px 120px, auto;
    z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
    font-family: var(--serif);
    line-height: .98;
    margin: 0;
    font-weight: 700;
}

h1 { font-size: clamp(3.25rem, 8vw, 7.8rem); max-width: 10ch; }
h2 { font-size: clamp(2.3rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.1rem); }
p { margin: 0; color: var(--muted); }

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 14px 12px 22px;
    border: 1px solid rgba(44, 26, 14, .1);
    border-radius: 8px;
    background: rgba(250, 250, 247, .78);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 50px rgba(44, 26, 14, .08);
}

.logo {
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--brown);
}

.logo span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo span::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: .94rem;
}

.site-nav a:not(.btn),
.footer-links a,
.footer-contact a {
    position: relative;
}

.site-nav a:not(.btn)::after,
.footer-links a::after,
.footer-contact a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.footer-links a:hover::after,
.footer-contact a:hover::after {
    transform: scaleX(1);
}

.nav-toggle { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 6px;
    border: 1px solid var(--amber);
    font-weight: 700;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.02);
}

.btn-small {
    min-height: 42px;
    padding: 0 18px;
}

.site-nav .btn-small {
    border-radius: 999px;
}

.btn-filled {
    background: var(--amber);
    color: #fffaf1;
}

.btn-filled:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
}

.btn-outline:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--cream);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
    align-items: center;
    gap: 56px;
    padding: 128px max(24px, calc((100vw - 1180px) / 2)) 78px;
    position: relative;
    overflow: hidden;
}

.hero-copy > p:last-of-type {
    max-width: 620px;
    margin: 28px 0 34px;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.hero-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateY(var(--parallax, 0));
}

.gold-line {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: min(880px, calc(100% - 48px));
    height: 1px;
    background: var(--amber);
    transform: translateX(-50%) scaleX(0);
    animation: growLine 1.1s .3s ease forwards;
}

@keyframes growLine {
    to { transform: translateX(-50%) scaleX(1); }
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--amber-dark);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
}

.section-pad {
    padding: 110px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    background: var(--cream-2);
}

.stat {
    border-left: 1px solid rgba(44, 26, 14, .14);
    padding: 8px 0 8px 24px;
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: .9;
    color: var(--brown);
}

.stat span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
}

.service-cards,
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.why-grid article,
.contact-panel,
.contact-info {
    min-height: 280px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 252, .72);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover,
.why-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 150, 62, .62);
    box-shadow: 0 24px 52px rgba(44, 26, 14, .1);
}

.icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    color: var(--amber);
}

.icon svg,
.check-list svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card p,
.why-grid p {
    margin: 16px 0 22px;
}

.service-card a {
    color: var(--amber-dark);
    font-weight: 800;
}

.dark-cta,
.final-cta {
    margin: 0;
    padding: 92px max(24px, calc((100vw - 1180px) / 2));
    background: var(--brown);
    color: var(--cream);
    text-align: center;
}

.dark-cta p,
.final-cta p {
    margin: 18px auto 30px;
    max-width: 620px;
    color: rgba(250, 250, 247, .72);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.case-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fffdf8;
}

.case-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.case-card div {
    padding: 22px;
}

.case-card strong {
    display: block;
    color: var(--brown);
}

.case-card p {
    margin-top: 8px;
}

.case-card small {
    display: block;
    margin-bottom: 8px;
    color: var(--amber-dark);
    font-weight: 800;
}

.case-overlay {
    position: absolute;
    inset: 0 0 auto;
    height: calc(100% - 112px);
    display: grid;
    place-items: center;
    background: rgba(200, 150, 62, .82);
    color: #fff;
    font-weight: 800;
    opacity: 0;
    transition: opacity .32s ease;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.center {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.process {
    background: #fffdf8;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    border-top: 1px dashed rgba(200, 150, 62, .65);
}

.step {
    position: relative;
    z-index: 1;
    min-height: 150px;
    padding: 24px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.step span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-weight: 800;
}

.wood-cta {
    margin: 0 max(24px, calc((100vw - 1180px) / 2)) 0;
    padding: 80px 34px;
    border-radius: 8px;
    text-align: center;
    background:
        linear-gradient(rgba(250, 250, 247, .86), rgba(250, 250, 247, .9)),
        repeating-linear-gradient(90deg, rgba(44, 26, 14, .08) 0 1px, transparent 1px 38px),
        radial-gradient(circle at 15% 30%, rgba(200, 150, 62, .16), transparent 30rem);
    border: 1px solid rgba(200, 150, 62, .22);
}

.wood-cta p {
    margin: 18px auto 30px;
    max-width: 620px;
}

.slider {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    gap: 18px;
}

.slider-track {
    position: relative;
    min-height: 320px;
}

.testimonial {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 36px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf8;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .32s ease, transform .32s ease;
}

.testimonial.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.avatar {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-weight: 900;
}

blockquote {
    margin: 0;
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.1;
}

.testimonial p {
    margin-top: 24px;
    color: var(--brown);
    font-weight: 800;
}

.testimonial span {
    display: block;
    color: var(--muted);
    font-weight: 500;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--brown);
    font-size: 1.4rem;
    cursor: pointer;
}

.slider-dots {
    grid-column: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(44, 26, 14, .2);
}

.slider-dots button.is-active {
    background: var(--amber);
}

.final-cta {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
    text-align: left;
}

.final-cta p {
    margin-left: 0;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(250, 250, 247, .78);
    font-size: .88rem;
}

.contact-form .form-comment {
    grid-column: 1 / -1;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, .08);
    color: var(--cream);
    font: inherit;
    outline: none;
}

textarea { resize: vertical; }

input::placeholder,
textarea::placeholder {
    color: rgba(250, 250, 247, .5);
}

.contact-form button,
.contact-form small {
    grid-column: 1 / -1;
}

.contact-form small {
    color: rgba(250, 250, 247, .58);
}

.page-hero {
    padding: 170px max(24px, calc((100vw - 1180px) / 2)) 70px;
}

.page-hero h1 {
    max-width: 980px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 24px;
    font-size: 1.1rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.service-detail.is-reverse .service-image {
    order: 2;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-text p {
    margin: 22px 0;
    max-width: 620px;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list svg {
    flex: 0 0 20px;
    color: var(--amber);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.filters button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(242, 180, 0, .42);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #f6f0e6;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.filters button.is-active,
.filters button:hover {
    background: var(--amber);
    color: #0b0b0a;
    border-color: var(--amber);
    box-shadow: 0 0 18px rgba(242, 180, 0, .28);
}

.case-card.is-hidden {
    display: none;
}

.case-hero {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    align-items: end;
    padding: 160px max(24px, calc((100vw - 1180px) / 2)) 70px;
}

.case-hero h1 {
    max-width: 760px;
}

.case-hero img,
.wide-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.case-story {
    max-width: 960px;
    margin: 0 auto;
}

.case-story article {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.case-story article span {
    display: block;
    margin-bottom: 12px;
    color: var(--amber-dark);
    font-weight: 900;
}

.case-story article p {
    font-size: 1.18rem;
    color: var(--choco);
}

.case-story blockquote {
    margin: 44px 0 0;
    padding-left: 28px;
    border-left: 2px solid var(--amber);
}

.about-intro h1 {
    max-width: 1000px;
}

.wide-photo {
    padding: 0 max(24px, calc((100vw - 1180px) / 2));
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
}

.contacts-layout .contact-form label,
.contacts-layout .contact-form small {
    color: var(--muted);
}

.contacts-layout input,
.contacts-layout textarea {
    border-color: var(--line);
    background: #fffdf8;
    color: var(--choco);
}

.contacts-layout input::placeholder,
.contacts-layout textarea::placeholder {
    color: rgba(32, 20, 13, .42);
}

.contact-info {
    display: grid;
    align-content: start;
    gap: 16px;
}

.contact-info a {
    color: var(--brown);
    font-weight: 800;
}

.map-block {
    margin: 0 max(24px, calc((100vw - 1180px) / 2)) 100px;
    min-height: 310px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(45deg, rgba(200, 150, 62, .12), transparent),
        repeating-linear-gradient(0deg, rgba(44, 26, 14, .05) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(44, 26, 14, .05) 0 1px, transparent 1px 44px);
    text-align: center;
    overflow: hidden;
}

.map-block iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(.2) contrast(1.05);
}

.map-block strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--serif);
    font-size: 2rem;
}

.site-footer {
    padding: 56px max(24px, calc((100vw - 1180px) / 2)) 28px;
    background: #130d09;
    color: var(--cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .8fr;
    gap: 32px;
}

.footer-grid p,
.footer-line {
    color: rgba(250, 250, 247, .62);
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-line {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(250, 250, 247, .1);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.cursor-dot {
    position: fixed;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(200, 150, 62, .8);
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .18s ease;
}

body.cursor-active .cursor-dot {
    transform: translate(-50%, -50%) scale(1);
}

/* A more editorial, handmade art direction layer. */
body {
    background:
        linear-gradient(90deg, rgba(44, 26, 14, .045) 1px, transparent 1px) 50% 0 / 86px 86px,
        linear-gradient(180deg, #fffdf9 0%, var(--cream) 42%, #f4efe5 100%);
}

body::after {
    content: "REZON";
    position: fixed;
    right: -2.4rem;
    bottom: 9vh;
    z-index: -1;
    color: rgba(44, 26, 14, .035);
    font-family: var(--serif);
    font-size: clamp(8rem, 18vw, 18rem);
    line-height: 1;
    writing-mode: vertical-rl;
    pointer-events: none;
}

.site-header {
    border-radius: 999px;
    width: min(1120px, calc(100% - 34px));
}

.hero {
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    gap: clamp(34px, 6vw, 84px);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    top: 118px;
    width: 122px;
    height: 122px;
    border: 1px solid rgba(200, 150, 62, .44);
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(200, 150, 62, .34) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
        linear-gradient(0deg, transparent calc(50% - 1px), rgba(200, 150, 62, .34) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
    opacity: .72;
}

.hero-copy {
    padding-top: 42px;
}

.hero-copy h1 {
    max-width: 8.6ch;
    text-wrap: balance;
}

.hero-copy h1::after {
    content: "";
    display: block;
    width: 74px;
    height: 10px;
    margin-top: 24px;
    background: var(--amber);
    transform: skewX(-18deg);
}

.hero-visual {
    border-radius: 160px 8px 8px 8px;
    box-shadow: 0 34px 90px rgba(44, 26, 14, .2);
    transform: translateY(var(--parallax, 0)) rotate(-1.5deg);
}

.hero-visual::after {
    content: "лазер / дерево / серия";
    position: absolute;
    right: 22px;
    bottom: 20px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(250, 250, 247, .78);
    color: var(--brown);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.stats {
    margin: 0 max(24px, calc((100vw - 1180px) / 2));
    padding: 38px;
    border-radius: 8px 70px 8px 8px;
    background:
        linear-gradient(135deg, rgba(44, 26, 14, .06), transparent 40%),
        var(--cream-2);
    box-shadow: inset 0 0 0 1px rgba(44, 26, 14, .08);
}

.stat {
    border-left: 0;
    border-top: 1px solid rgba(44, 26, 14, .16);
    padding: 18px 0 0;
}

.service-cards {
    grid-template-columns: 1.15fr .85fr 1fr;
    align-items: stretch;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 34px;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(44, 26, 14, .22);
    border-radius: 0;
}

.service-card::before {
    content: "0" counter(service);
    counter-increment: service;
    position: absolute;
    right: 12px;
    top: -20px;
    color: rgba(44, 26, 14, .06);
    font-family: var(--serif);
    font-size: 8rem;
    line-height: 1;
}

.service-cards {
    counter-reset: service;
}

.service-card:nth-child(2) {
    margin-top: 68px;
    background: rgba(255, 253, 248, .58);
    border-radius: 8px;
    border: 1px solid rgba(200, 150, 62, .24);
}

.service-card:nth-child(3) {
    margin-top: 28px;
}

.service-card:hover {
    transform: translateY(-8px) rotate(-.6deg);
    border-color: rgba(200, 150, 62, .68);
}

.dark-cta {
    position: relative;
    overflow: hidden;
    margin: 30px max(24px, calc((100vw - 1180px) / 2));
    border-radius: 8px;
    text-align: left;
}

.dark-cta::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(250, 250, 247, .14);
    pointer-events: none;
}

.dark-cta h2,
.dark-cta p,
.dark-cta .btn {
    position: relative;
    z-index: 1;
}

.dark-cta h2 {
    max-width: 760px;
}

.dark-cta p {
    margin-left: 0;
}

.case-grid-three {
    grid-template-columns: 1.05fr .9fr 1.05fr;
    align-items: start;
}

.case-grid-three .case-card:nth-child(2) {
    margin-top: 54px;
}

.case-card {
    border: 0;
    background: transparent;
}

.case-card img {
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(44, 26, 14, .13);
}

.case-card div {
    padding: 18px 0 0;
}

.case-overlay {
    border-radius: 8px;
    height: auto;
    inset: 0 0 96px;
    background:
        linear-gradient(135deg, rgba(44, 26, 14, .28), rgba(200, 150, 62, .86));
}

.process {
    background:
        repeating-linear-gradient(90deg, rgba(44, 26, 14, .045) 0 1px, transparent 1px 58px),
        #fffdf8;
}

.step {
    min-height: 190px;
    border: 0;
    border-left: 1px solid rgba(44, 26, 14, .16);
    border-radius: 0;
    background: transparent;
}

.step span {
    width: auto;
    height: auto;
    place-items: start;
    margin-bottom: 42px;
    border-radius: 0;
    background: transparent;
    color: var(--amber);
    font-family: var(--serif);
    font-size: 3.8rem;
    line-height: .8;
}

.wood-cta {
    position: relative;
    overflow: hidden;
    padding: 96px 34px;
    text-align: left;
}

.wood-cta::after {
    content: "";
    position: absolute;
    right: 34px;
    top: 34px;
    width: min(34vw, 320px);
    height: 1px;
    background: var(--amber);
    transform: rotate(-12deg);
    transform-origin: right;
}

.wood-cta h2,
.wood-cta p,
.wood-cta .btn {
    max-width: 700px;
}

.wood-cta p {
    margin-left: 0;
}

.testimonial {
    border: 0;
    border-radius: 8px 80px 8px 8px;
    background:
        linear-gradient(135deg, rgba(200, 150, 62, .11), transparent 50%),
        #fffdf8;
}

.final-cta {
    position: relative;
    overflow: hidden;
    grid-template-columns: .82fr 1.18fr;
    background:
        linear-gradient(110deg, #1a100a 0%, var(--brown) 58%, #412916 100%);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(250, 250, 247, .12);
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

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

.contact-route {
    display: grid;
    gap: 6px;
    min-height: 118px;
    padding: 22px;
    border: 1px solid rgba(44, 26, 14, .14);
    border-radius: 8px;
    background: #fffdf8;
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.contact-route:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 150, 62, .7);
}

.contact-route span {
    color: var(--muted);
    font-size: .86rem;
}

.contact-route strong {
    color: var(--brown);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.contact-routes-dark .contact-route {
    border-color: rgba(250, 250, 247, .14);
    background: rgba(250, 250, 247, .07);
}

.contact-routes-dark .contact-route span {
    color: rgba(250, 250, 247, .62);
}

.contact-routes-dark .contact-route strong {
    color: var(--cream);
}

.contact-route.primary {
    background: var(--amber);
    border-color: var(--amber);
}

.contact-route.primary span,
.contact-route.primary strong {
    color: #fffaf1;
}

.contact-panel-large {
    display: grid;
    gap: 22px;
    min-height: auto;
    background:
        linear-gradient(135deg, rgba(200, 150, 62, .13), transparent 44%),
        #fffdf8;
}

.contact-panel-large h2 {
    max-width: 640px;
}

.contact-panel-large > p:not(.eyebrow) {
    max-width: 640px;
}

.contact-info {
    border-radius: 8px 8px 90px 8px;
    background: var(--brown);
    color: var(--cream);
}

.contact-info p,
.contact-info a {
    color: rgba(250, 250, 247, .76);
}

.contact-info h2 {
    color: var(--cream);
}

@media (max-width: 940px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .nav-toggle {
        display: grid;
        gap: 6px;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
    }

    .nav-toggle span {
        display: block;
        height: 2px;
        background: var(--brown);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(250, 250, 247, .96);
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero,
    .case-hero,
    .service-detail,
    .final-cta,
    .contacts-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 140px;
    }

    .service-detail.is-reverse .service-image {
        order: 0;
    }

    .stats,
    .service-cards,
    .case-grid,
    .case-grid-three,
    .steps,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    h1 { font-size: clamp(3rem, 17vw, 4.4rem); }

    .hero-actions,
    .contact-form {
        grid-template-columns: 1fr;
    }

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

    .stats,
    .service-cards,
    .case-grid,
    .case-grid-three,
    .steps,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding-top: 76px;
        padding-bottom: 76px;
    }

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

    .slider-track {
        grid-column: 1 / -1;
        order: -1;
    }

    .slider-dots {
        grid-column: 1 / -1;
    }

    .final-cta,
    .dark-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

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

    .hero-visual {
        border-radius: 80px 8px 8px 8px;
    }
}

/* Readability pass: keep the bold promo style, but stop headings from owning the whole viewport. */
h1 {
    font-size: clamp(3rem, 6.4vw, 6.4rem);
    line-height: 1.06;
}

h2 {
    font-size: clamp(2.25rem, 4.4vw, 4.45rem);
    line-height: 1.08;
}

h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
    line-height: 1.12;
}

.hero-copy h1 {
    max-width: 15ch;
}

.hero-copy > p:last-of-type {
    font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.section-head h2,
.dark-cta h2,
.wood-cta h2,
.final-cta h2,
.page-hero h1,
.case-hero h1,
.about-intro h1 {
    max-width: 20ch;
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(2.35rem, 10.5vw, 3.35rem);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(1.95rem, 8.2vw, 2.7rem);
        line-height: 1.1;
    }

    h3 {
        font-size: clamp(1.35rem, 6.8vw, 1.85rem);
    }

    .hero-copy h1 {
        max-width: 14ch;
    }
}

/* REZON social-card inspired direction: black texture, laser amber, brutal condensed type. */
:root {
    --cream: #f6f0e6;
    --cream-2: #1a1713;
    --amber: #f2b400;
    --amber-dark: #d08d00;
    --brown: #11100e;
    --choco: #f6f0e6;
    --muted: #c5b8a7;
    --line: rgba(242, 180, 0, .24);
    --shadow: 0 28px 90px rgba(0, 0, 0, .45);
    --serif: "Oswald", Impact, sans-serif;
    --sans: "Manrope", Arial, sans-serif;
}

body {
    background:
        radial-gradient(circle at 80% 12%, rgba(242, 180, 0, .16), transparent 28rem),
        linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 72px),
        #0b0b0a;
    color: var(--choco);
}

body::before {
    opacity: .55;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.08), transparent 2px),
        radial-gradient(circle at 70% 50%, rgba(255,255,255,.055), transparent 2px),
        linear-gradient(110deg, transparent 0 48%, rgba(242,180,0,.08) 48% 49%, transparent 49% 100%);
    background-size: 34px 34px, 58px 58px, 100% 100%;
}

body::after {
    color: rgba(255, 255, 255, .035);
    font-family: var(--serif);
    font-size: clamp(9rem, 20vw, 22rem);
    font-weight: 700;
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: .01em;
}

h1 {
    font-size: clamp(4.2rem, 10vw, 9.8rem);
    line-height: .96;
}

h2 {
    font-size: clamp(3rem, 6.2vw, 6.6rem);
    line-height: .98;
}

h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.03;
}

h1,
h2,
h3,
.btn,
.case-card strong,
.step strong,
blockquote,
.contact-route strong {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

p {
    color: var(--muted);
}

.site-header {
    background: rgba(8, 8, 7, .78);
    border-color: rgba(242, 180, 0, .28);
    box-shadow: 0 0 36px rgba(242, 180, 0, .08), 0 18px 60px rgba(0, 0, 0, .45);
}

.logo {
    color: #fff;
    font-family: var(--serif);
    font-size: 1.38rem;
    font-weight: 700;
}

.logo span::before {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 62%, var(--amber) 0 3px, transparent 4px),
        linear-gradient(90deg, transparent 47%, #fff 47% 53%, transparent 53%),
        linear-gradient(0deg, transparent 47%, #fff 47% 53%, transparent 53%);
    box-shadow: 0 7px 18px rgba(242, 180, 0, .34);
}

.site-nav a:not(.btn) {
    color: rgba(246, 240, 230, .82);
}

.btn {
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn-filled {
    color: #0b0b0a;
    box-shadow: 0 0 22px rgba(242, 180, 0, .26);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .36);
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(105deg, rgba(0, 0, 0, .5) 0 45%, transparent 45%),
        radial-gradient(circle at 72% 50%, rgba(242, 180, 0, .16), transparent 28rem);
}

.hero::before {
    border-color: rgba(242, 180, 0, .45);
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(242, 180, 0, .5) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
        linear-gradient(0deg, transparent calc(50% - 1px), rgba(242, 180, 0, .5) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
}

.hero-copy h1 {
    color: #fff;
    text-shadow: 0 10px 34px rgba(0,0,0,.45);
    max-width: 12.8ch;
    text-wrap: wrap;
}

.hero-copy h1::after {
    width: min(320px, 70%);
    height: 4px;
    background: var(--amber);
    box-shadow: 0 0 18px rgba(242, 180, 0, .8);
    transform: skewX(-18deg);
}

.hero-copy > p:last-of-type {
    max-width: 560px;
    color: rgba(246, 240, 230, .78);
    font-weight: 700;
}

.eyebrow {
    color: var(--amber);
    font-family: var(--serif);
    font-size: .9rem;
}

.hero-visual {
    border: 1px solid rgba(242, 180, 0, .3);
    border-radius: 4px 120px 4px 4px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 30px 100px rgba(0,0,0,.68);
}

.gold-line {
    background: var(--amber);
    box-shadow: 0 0 18px rgba(242, 180, 0, .9);
}

.section-pad {
    position: relative;
}

.section-head h2 {
    color: #fff;
    max-width: 18ch;
    text-wrap: wrap;
}

.stats {
    background:
        radial-gradient(circle at 18% 0, rgba(242, 180, 0, .2), transparent 20rem),
        linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
        #111;
    border: 1px solid rgba(242, 180, 0, .22);
    border-radius: 4px;
}

.stat {
    border-top-color: rgba(242, 180, 0, .32);
}

.stat strong {
    color: #fff;
    font-family: var(--serif);
}

.stat span {
    color: rgba(246, 240, 230, .7);
}

.service-card,
.why-grid article {
    background:
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        #111;
    border: 1px solid rgba(242, 180, 0, .18);
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.service-card:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(242, 180, 0, .16), rgba(255,255,255,.03)),
        #14110c;
}

.service-card::before {
    color: rgba(242, 180, 0, .12);
}

.service-card h3,
.why-grid h3,
.service-text h2,
.contact-panel-large h2 {
    color: #fff;
}

.service-card p,
.why-grid p {
    color: rgba(246, 240, 230, .68);
}

.service-card a {
    color: var(--amber);
}

.icon {
    color: var(--amber);
    filter: drop-shadow(0 0 10px rgba(242, 180, 0, .32));
}

.dark-cta,
.final-cta,
.site-footer {
    background:
        radial-gradient(circle at 70% 20%, rgba(242, 180, 0, .17), transparent 24rem),
        linear-gradient(135deg, #080808, #17100a);
    border: 1px solid rgba(242, 180, 0, .24);
}

.dark-cta::after,
.final-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    box-shadow: 0 0 16px rgba(242, 180, 0, .8);
}

.case-card img,
.service-image,
.wide-photo img,
.case-hero img {
    border: 1px solid rgba(242, 180, 0, .22);
    background: #111;
    filter: contrast(1.08) saturate(.92);
}

.case-card strong {
    color: #fff;
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.12;
    text-transform: uppercase;
    text-wrap: wrap;
}

.case-card small,
.case-card p {
    color: rgba(246, 240, 230, .68);
}

.case-overlay {
    background:
        linear-gradient(135deg, rgba(0,0,0,.45), rgba(242,180,0,.78));
    color: #0b0b0a;
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.process {
    background:
        linear-gradient(110deg, rgba(242, 180, 0, .08) 0 1px, transparent 1px 36px),
        #0e0e0d;
}

.step {
    border-left-color: rgba(242, 180, 0, .3);
}

.step strong {
    color: #fff;
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.12;
    text-transform: uppercase;
    text-wrap: wrap;
}

.wood-cta {
    background:
        linear-gradient(110deg, rgba(0,0,0,.72), rgba(0,0,0,.35)),
        radial-gradient(circle at 85% 25%, rgba(242,180,0,.18), transparent 24rem),
        #12100d;
    border-color: rgba(242, 180, 0, .26);
}

.wood-cta h2 {
    color: #fff;
}

.testimonial {
    background:
        radial-gradient(circle at 12% 18%, rgba(242,180,0,.16), transparent 18rem),
        linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
        #111;
    border: 1px solid rgba(242, 180, 0, .18);
}

blockquote {
    color: #fff;
    font-family: var(--serif);
    line-height: 1.05;
    text-transform: uppercase;
    text-wrap: wrap;
}

@media (min-width: 941px) {
    h1 {
        line-height: 1.02;
    }

    h2 {
        line-height: 1.04;
    }

    .hero-copy h1 {
        max-width: 13.4ch;
    }

    .page-hero h1,
    .case-hero h1,
    .about-intro h1 {
        max-width: 16ch;
    }

    .dark-cta h2,
    .wood-cta h2,
    .final-cta h2 {
        max-width: 16ch;
    }
}

.testimonial p {
    color: var(--amber);
}

.testimonial span {
    color: rgba(246, 240, 230, .62);
}

.contact-route {
    background:
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
        #111;
    border-color: rgba(242, 180, 0, .2);
}

.contact-route span {
    color: rgba(246, 240, 230, .58);
}

.contact-route strong {
    color: #fff;
    line-height: 1.14;
    overflow-wrap: break-word;
}

.contact-route.primary strong,
.contact-route.primary span {
    color: #0b0b0a;
}

.contact-panel,
.contact-info {
    border-radius: 4px;
}

.contact-panel-large {
    background:
        radial-gradient(circle at 0 0, rgba(242, 180, 0, .18), transparent 20rem),
        #111;
    border-color: rgba(242, 180, 0, .2);
}

.page-hero h1,
.case-hero h1 {
    color: #fff;
}

.map-block {
    background:
        radial-gradient(circle at 50% 50%, rgba(242, 180, 0, .12), transparent 22rem),
        repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 44px),
        #10100f;
    border-color: rgba(242, 180, 0, .22);
    color: #fff;
}

@media (max-width: 940px) {
    .site-nav {
        background: rgba(8, 8, 7, .96);
        border-color: rgba(242, 180, 0, .25);
    }

    .nav-toggle span {
        background: #fff;
    }

    .hero {
        background:
            radial-gradient(circle at 70% 40%, rgba(242, 180, 0, .14), transparent 22rem),
            #0b0b0a;
        gap: 30px;
        min-height: auto;
        padding-bottom: 64px;
    }

    .hero-copy {
        padding-top: 18px;
    }

    .page-hero,
    .case-hero {
        padding-top: 136px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .final-cta {
        gap: 28px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(3rem, 13.8vw, 4.25rem);
        line-height: 1;
    }

    h2 {
        font-size: clamp(2.25rem, 10.8vw, 3.25rem);
        line-height: 1.02;
    }

    h3 {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
        line-height: 1.08;
    }

    .site-header {
        border-radius: 4px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero-copy > p:last-of-type {
        margin: 22px 0 26px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-copy h1 {
        max-width: 10.4ch;
    }

    .hero-copy h1::after {
        margin-top: 18px;
    }

    .eyebrow {
        font-size: .78rem;
        line-height: 1.25;
    }

    .section-pad {
        padding-left: 18px;
        padding-right: 18px;
    }

    .stats,
    .wood-cta,
    .dark-cta,
    .map-block {
        margin-left: 18px;
        margin-right: 18px;
    }

    .service-card,
    .why-grid article,
    .contact-panel,
    .contact-info {
        padding: 22px;
    }

    .service-card {
        min-height: 0;
    }

    .service-card::before {
        top: -10px;
        font-size: 5.8rem;
    }

    .case-card strong {
        font-size: 1.15rem;
    }

    .step {
        min-height: 0;
        padding: 20px 0 20px 18px;
    }

    .step span {
        margin-bottom: 18px;
        font-size: 2.8rem;
    }

    .step strong {
        font-size: 1.24rem;
    }

    blockquote {
        font-size: clamp(1.35rem, 8vw, 2rem);
        line-height: 1.08;
    }

    .testimonial {
        padding: 26px 18px;
    }

    .slider-track {
        min-height: 390px;
    }

    .contact-route {
        min-height: 0;
        padding: 18px;
    }

    .contact-route strong {
        font-size: 1rem;
        overflow-wrap: anywhere;
    }

    .service-cards,
    .case-grid-three {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .case-grid-three .case-card:nth-child(2) {
        margin-top: 0;
    }
}

/* Final heading scale override. Keep this at the end of the file. */
body h1 {
    font-size: clamp(2.8rem, 4.9vw, 4.85rem);
    line-height: 1.06;
}

body h2 {
    font-size: clamp(2.1rem, 3.45vw, 3.7rem);
    line-height: 1.08;
}

body h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
    line-height: 1.12;
}

body .hero-copy h1 {
    max-width: 19ch;
}

body .section-head h2,
body .dark-cta h2,
body .wood-cta h2,
body .final-cta h2,
body .page-hero h1,
body .case-hero h1,
body .about-intro h1 {
    max-width: 20ch;
}

@media (max-width: 640px) {
    body h1 {
        font-size: clamp(2.35rem, 10.5vw, 3.35rem);
        line-height: 1.08;
    }

    body h2 {
        font-size: clamp(1.95rem, 8.2vw, 2.7rem);
        line-height: 1.1;
    }

    body h3 {
        font-size: clamp(1.35rem, 6.8vw, 1.85rem);
    }

    body .hero-copy h1 {
        max-width: 14ch;
    }
}

/* Mobile slider fix: active testimonial defines its own height. */
@media (max-width: 640px) {
    .slider {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        justify-items: center;
        gap: 14px 20px;
    }

    .slider-track {
        grid-column: 1 / -1;
        order: -1;
        width: 100%;
        min-height: 0;
        position: relative;
        justify-self: stretch;
    }

    .testimonial {
        position: relative;
        inset: auto;
        min-height: 0;
        padding: 24px 18px;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: none;
        width: 100%;
    }

    .testimonial.is-active {
        display: grid;
        pointer-events: auto;
    }

    .testimonial blockquote {
        font-size: clamp(1.2rem, 6.4vw, 1.75rem);
        line-height: 1.14;
    }

    .avatar {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .slider-arrow {
        width: 52px;
        height: 52px;
    }

    .slider-dots {
        grid-column: 1 / -1;
        margin-top: 2px;
    }
}
.logo-image img {
    width: 140px;
    height: auto;
    display: block;
}

.logo-image::before,
.logo-image span::before {
    display: none;
}


/* Header logo alignment fix */
.site-header {
    min-height: 56px;
    height: auto;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

.logo,
.logo-image {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 1;
}

.logo img,
.logo-image img,
.site-header .logo img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 42px;
    object-fit: contain;
}

.site-nav {
    align-items: center;
}

@media (max-width: 940px) {
    .site-header {
        min-height: 58px;
    }

    .logo img,
    .logo-image img,
    .site-header .logo img {
        max-width: 132px;
        max-height: 38px;
    }
}


/* Testimonials slider hard bounds */
.slider-track {
    height: clamp(360px, 34vw, 460px);
    min-height: 0;
    overflow: hidden;
}

.testimonial {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    grid-template-rows: auto minmax(0, 1fr) auto;
}

.testimonial blockquote {
    max-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.testimonial p {
    align-self: end;
}

@media (max-width: 640px) {
    .slider-track {
        height: 420px;
        min-height: 0;
        overflow: hidden;
        justify-self: stretch;
    }

    .testimonial,
    .testimonial.is-active {
        height: 100%;
        max-height: 100%;
        overflow: hidden;
        width: 100%;
    }

    .testimonial blockquote {
        -webkit-line-clamp: 6;
    }
}


/* Case card text spacing fix */
.case-card div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 128px;
}

.case-card small,
.case-card strong,
.case-card p {
    margin: 0;
}

.case-card strong {
    display: block;
    min-height: calc(2 * 1.18em);
    line-height: 1.18;
}

.case-card p {
    line-height: 1.55;
}

@media (max-width: 640px) {
    .case-card div {
        min-height: 118px;
        gap: 7px;
    }

    .case-card strong {
        min-height: auto;
        line-height: 1.16;
    }
}


/* Case detail hero spacing fix */
.case-hero h1 {
    margin-bottom: clamp(18px, 2.4vw, 30px);
    line-height: 1.06;
}

.case-hero h1 + p {
    margin-top: 0;
}

@media (max-width: 640px) {
    .case-hero h1 {
        margin-bottom: 18px;
        line-height: 1.08;
    }
}
