:root {
    --brown: #362716;
    --brown-soft: #836b55;
    --cream: #eae5e0;
    --cream-light: #f6f1ec;
    --copper: #c5853a;
    --black: #222222;
    --white: #ffffff;
    --line: rgba(54, 39, 22, 0.14);
    --shadow: 0 16px 44px rgba(54, 39, 22, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    color: var(--brown);
    background: var(--cream);
    letter-spacing: 0;
}

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

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

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

.section-pad {
    padding: 120px 0;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 20px;
    padding: 24px 30px;
    border-radius: 20px;
    background: var(--cream);
    box-shadow: 0 10px 32px rgba(54, 39, 22, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 280px;
}

.brand-mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--cream);
    background: var(--copper);
    border-radius: 16px;
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.28);
    font-weight: 800;
    font-size: 30px;
}

.brand strong,
.site-footer strong {
    display: block;
    color: var(--brown);
    font-size: 22px;
    line-height: 1.08;
    font-weight: 800;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--brown-soft);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--brown);
    font-size: 18px;
    font-weight: 500;
}

.main-nav a {
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--copper);
}

.main-nav .dots-circle {
    width: 8px;
    height: 8px;
    margin: 0 30px;
    border-radius: 100%;
    background: var(--copper);
    flex: 0 0 auto;
}

.nav-cta,
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 30px;
    border: 0;
    border-radius: 14px;
    color: var(--white);
    background: var(--copper);
    overflow: hidden;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button.secondary {
    color: var(--copper);
    background: var(--cream);
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-2px);
    background: var(--brown);
    color: var(--white);
}

.hero {
    position: relative;
    max-width: calc(100% - 40px);
    min-height: 720px;
    margin: 168px 20px 0;
    border-radius: 20px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--brown);
}

.subpage-hero {
    position: relative;
    max-width: calc(100% - 40px);
    min-height: 420px;
    margin: 168px 20px 0;
    border-radius: 20px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--brown);
}

.subpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(31.38deg, rgba(54, 39, 22, 0.98), rgba(54, 39, 22, 0.35) 100%),
        var(--page-image, url("../images/hero/hero1-bg3.jpg")) center / cover no-repeat;
}

.subpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero/hero1-overlay.png") center / cover no-repeat;
    opacity: 0.52;
}

.subpage-hero-content {
    position: relative;
    z-index: 1;
    width: min(1290px, calc(100% - 80px));
    margin: 0 auto;
    padding: 92px 0 76px;
}

.subpage-hero h1 {
    max-width: 980px;
    margin-bottom: 18px;
}

.subpage-hero p:not(.section-label) {
    max-width: 720px;
    color: var(--cream);
    font-size: 22px;
    line-height: 34px;
}

.hero-media {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background:
        linear-gradient(31.38deg, rgba(54, 39, 22, 0.98), rgba(54, 39, 22, 0.24) 100%),
        url("../images/hero/hero1-bg2.jpg") center / cover no-repeat;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero/hero1-overlay.png") center / cover no-repeat;
    opacity: 0.78;
}

.hero-content {
    position: relative;
    width: min(1290px, calc(100% - 80px));
    margin: 0 auto;
    padding: 96px 0 82px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--brown-soft);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.32px;
}

.hero .section-label,
.image-band .section-label,
.process .section-label {
    color: var(--cream);
}

.section-label::before,
.section-label::after {
    content: "";
    width: 22px;
    height: 22px;
    background: url("../images/services/wheel-icon.png") center / contain no-repeat;
    flex: 0 0 auto;
}

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

h1 {
    max-width: 1160px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(54px, 6vw, 86px);
    line-height: 1.08;
    font-weight: 700;
}

h2 {
    margin-bottom: 22px;
    color: var(--brown);
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.18;
    font-weight: 600;
}

h3 {
    margin-bottom: 12px;
    color: var(--brown);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

p {
    color: var(--brown-soft);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.hero-copy {
    max-width: 850px;
    margin-bottom: 44px;
    color: var(--white);
    font-size: 23px;
    line-height: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 54px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 780px;
    gap: 10px;
}

.hero-proof div {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(8px);
}

.hero-proof strong {
    display: block;
    color: var(--copper);
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.hero-proof span {
    display: block;
    margin-top: 8px;
    color: var(--cream);
    font-size: 16px;
    font-weight: 600;
}

.intro {
    background: var(--cream);
}

.intro-grid,
.process-grid,
.why-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.intro-text {
    padding: 36px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.intro-text p:last-child,
.section-head p:last-child,
.contact p:last-child {
    margin-bottom: 0;
}

.section-head {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-head.left {
    margin: 0;
    text-align: left;
}

.services {
    position: relative;
    background: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.service-card,
.project-card,
.steps article,
.contact-form {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 24px;
    padding: 20px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.35s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card div {
    padding: 0 10px 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--copper);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-link::after {
    content: "";
    width: 22px;
    height: 12px;
    background: url("../images/services/services-arrow-icon.svg") center / contain no-repeat;
    filter: brightness(0) saturate(100%) invert(58%) sepia(63%) saturate(452%) hue-rotate(352deg) brightness(84%) contrast(91%);
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--brown);
    transform: translateX(4px);
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

.service-card p,
.project-card p,
.steps p {
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
}

.image-band {
    max-width: calc(100% - 40px);
    min-height: 560px;
    margin: 0 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(54, 39, 22, 0.88), rgba(54, 39, 22, 0.5), rgba(54, 39, 22, 0.1)),
        url("../images/tatyrek/obklad-media-stena.png") center / cover fixed no-repeat;
}

.image-band-copy {
    width: min(1290px, calc(100% - 80px));
    max-width: 760px;
    margin: 0 auto;
}

.image-band-copy h2,
.process h2 {
    color: var(--white);
}

.image-band-copy p:not(.section-label),
.process p {
    color: var(--cream);
}

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

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--brown);
    min-height: 430px;
}

.project-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 92px 24px 24px;
    border-radius: 20px;
    background: var(--cream);
    transition: transform 0.35s ease, background 0.35s ease;
}

.project-caption::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--copper) url("../images/our-projects/project-card-arrow.svg") center / 20px 20px no-repeat;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.project-caption span {
    margin-bottom: 6px;
    color: var(--copper);
    font-size: 13px;
    line-height: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-caption h3 {
    margin-bottom: 6px;
}

.project-caption p {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.project-card:hover .project-caption {
    transform: translateY(-6px);
    background: var(--white);
}

.project-card:hover .project-caption::after {
    background-color: var(--brown);
}

.process {
    max-width: calc(100% - 40px);
    margin: 0 20px;
    border-radius: 20px;
    color: var(--white);
    background:
        linear-gradient(rgba(54, 39, 22, 0.9), rgba(54, 39, 22, 0.92)),
        url("../images/our-process/our-process-bg.png") center / cover no-repeat;
}

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

.steps article {
    padding: 30px;
    background: var(--cream);
    box-shadow: none;
}

.steps span {
    display: inline-flex;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    background: var(--copper);
    font-size: 22px;
    font-weight: 800;
}

.why {
    background: var(--cream);
}

.why-grid {
    align-items: center;
}

.why-grid img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

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

.check-list li {
    position: relative;
    padding-left: 38px;
    color: var(--black);
    font-size: 18px;
    line-height: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--copper);
    box-shadow: inset 0 0 0 6px var(--cream);
}

.contact {
    background: var(--cream);
}

.contact-grid {
    align-items: center;
}

.page-copy {
    background: var(--cream);
}

.split-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
    padding: 36px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.split-card img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 22px;
}

.text-panel {
    padding: 18px 12px;
}

.text-panel p:last-child {
    margin-bottom: 0;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 22px 24px;
    border-radius: 18px;
    color: var(--black);
    background: var(--cream);
    font-size: 17px;
    line-height: 27px;
}

.cta-band {
    max-width: calc(100% - 40px);
    margin: 0 20px 20px;
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(54, 39, 22, 0.94), rgba(54, 39, 22, 0.62)),
        url("../images/tatyrek/obklad-media-stena.png") center / cover no-repeat;
    color: var(--white);
}

.cta-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.cta-band h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--white);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: start;
}

.detail-main,
.detail-side {
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.detail-main {
    padding: 36px;
}

.detail-main img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 34px;
}

.detail-main h2 {
    font-size: clamp(32px, 3vw, 46px);
}

.detail-side {
    position: sticky;
    top: 28px;
    padding: 26px;
}

.detail-side h3 {
    margin-bottom: 18px;
}

.side-links {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
}

.side-links a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    color: var(--brown);
    background: var(--cream);
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.side-links a:hover,
.side-links a.active {
    color: var(--white);
    background: var(--copper);
}

.reference-meta {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.reference-meta div {
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--cream);
}

.reference-meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--brown-soft);
    font-size: 13px;
    line-height: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.reference-meta strong {
    display: block;
    color: var(--brown);
    font-size: 17px;
    line-height: 24px;
}

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

.realization-gallery {
    margin-top: 56px;
}

.realization-gallery .section-head {
    margin-bottom: 28px;
}

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

.gallery-grid > a {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 22px;
    background: var(--cream);
}

.gallery-grid a {
    display: block;
    cursor: zoom-in;
}

.gallery-grid img {
    height: 100%;
    max-height: none;
    margin-bottom: 0;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.gallery-grid > a:hover img {
    transform: scale(1.04);
}

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

.contact-info-card {
    padding: 28px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--brown-soft);
    font-size: 17px;
    line-height: 28px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 34px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--brown);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(131, 107, 85, 0.32);
    border-radius: 14px;
    padding: 16px 18px;
    color: var(--brown);
    background: var(--cream-light);
    font: 500 16px/1.4 "Outfit", Arial, sans-serif;
}

.contact-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--brown-soft) 50%),
        linear-gradient(135deg, var(--brown-soft) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 2px),
        calc(100% - 16px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form input[type="file"] {
    padding: 10px 12px;
}

.contact-form input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    color: var(--white);
    background: var(--copper);
    font: 700 14px/1.2 "Outfit", Arial, sans-serif;
    cursor: pointer;
}

.contact-form small {
    color: var(--brown-soft);
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.contact-form small.is-error {
    color: #a62929;
}

.field-note {
    color: var(--brown-soft);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(197, 133, 58, 0.26);
    border-color: var(--copper);
}

.values-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 72px;
    align-items: start;
}

.values-list {
    display: grid;
}

.values-list article {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.values-list article:first-child {
    padding-top: 0;
}

.values-list span {
    color: var(--copper);
    font-size: 25px;
    line-height: 32px;
    font-weight: 800;
}

.values-list h3,
.values-list p {
    margin-bottom: 4px;
}

.section-pad-topless {
    padding-top: 0;
}

.about-image-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-image-collage img {
    min-height: 205px;
    height: 100%;
}

.about-image-collage img:first-child {
    grid-row: span 2;
    min-height: 434px;
}

.service-faq {
    padding-top: 0;
    background: var(--cream);
}

.faq-list {
    width: min(940px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-list details {
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-list summary {
    position: relative;
    padding: 24px 72px 24px 26px;
    color: var(--brown);
    font-size: 19px;
    line-height: 28px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--copper);
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 26px 24px;
    color: var(--black);
    font-size: 16px;
    line-height: 26px;
}

.site-footer {
    max-width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 58px 0;
    border-radius: 20px;
    color: var(--cream);
    background: var(--brown);
    overflow: hidden;
}

.site-footer strong {
    color: var(--white);
}

.site-footer p,
.site-footer a {
    color: var(--cream);
    font-size: 16px;
    line-height: 24px;
}

.site-footer a {
    display: block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--copper);
}

.site-footer span {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 800;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
}

@media (max-width: 1180px) {
    .site-header {
        position: absolute;
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-top: 8px;
    }

    .main-nav .dots-circle {
        margin: 0 20px;
    }

    .hero {
        margin-top: 206px;
    }

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

@media (max-width: 980px) {
    .intro-grid,
    .process-grid,
    .why-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .project-grid,
    .reference-gallery,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-grid,
    .process-grid,
    .why-grid,
    .contact-grid {
        gap: 44px;
    }

    .split-card,
    .detail-layout,
    .contact-info-grid,
    .values-layout {
        grid-template-columns: 1fr;
    }

    .detail-side {
        position: static;
    }

    .cta-band .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container,
    .hero-content,
    .image-band-copy {
        width: min(100% - 28px, 1290px);
    }

    .site-header {
        min-height: 0;
        margin: 10px;
        padding: 14px;
        border-radius: 16px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        font-size: 26px;
    }

    .brand small {
        display: none;
    }

    .brand strong {
        font-size: 17px;
    }

    .nav-cta {
        display: none;
    }

    .main-nav {
        font-size: 16px;
        flex-wrap: wrap;
        overflow: visible;
        row-gap: 8px;
        padding-top: 10px;
    }

    .main-nav .dots-circle {
        display: none;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .hero,
    .subpage-hero,
    .image-band,
    .process,
    .cta-band,
    .site-footer {
        max-width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 16px;
    }

    .hero {
        min-height: 760px;
        margin-top: 188px;
    }

    .subpage-hero {
        min-height: 420px;
        margin-top: 188px;
    }

    .hero-content {
        padding: 74px 0 42px;
    }

    .subpage-hero-content {
        width: min(100% - 28px, 1290px);
        padding: 72px 0 54px;
    }

    h1 {
        font-size: 44px;
        line-height: 1.1;
    }

    h2 {
        font-size: 34px;
        line-height: 1.18;
    }

    p,
    .hero-copy {
        font-size: 16px;
        line-height: 28px;
    }

    .hero-proof,
    .service-grid,
    .project-grid,
    .reference-gallery,
    .gallery-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 78px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .image-band {
        min-height: 560px;
        background-attachment: scroll;
    }

    .why-grid img {
        min-height: 320px;
    }

    .intro-text,
    .contact-form,
    .split-card,
    .detail-main,
    .detail-side {
        padding: 24px;
    }

    .split-card img {
        min-height: 300px;
    }

    .about-image-collage img,
    .about-image-collage img:first-child {
        min-height: 220px;
    }

    .cta-band .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
