:root {
    --clt-paper: #f7f1e8;
    --clt-surface: rgba(255, 252, 248, 0.92);
    --clt-card: #fffdf9;
    --clt-ink: #142241;
    --clt-navy: #101d3b;
    --clt-muted: #667089;
    --clt-line: #e6ddcf;
    --clt-accent: #e0b67c;
    --clt-accent-soft: #f3dcc0;
    --clt-blue-soft: #a9bddf;
    --clt-shadow: 0 24px 60px rgba(28, 39, 74, 0.08);
    --clt-radius-lg: 32px;
    --clt-radius-md: 22px;
    --clt-radius-sm: 16px;
    --clt-container: min(1300px, calc(100vw - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 26%),
        linear-gradient(180deg, #fbf7f1 0%, var(--clt-paper) 100%);
    color: var(--clt-ink);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.clt-site-shell {
    min-height: 100vh;
}

.clt-container {
    width: var(--clt-container);
    margin: 0 auto;
}

.clt-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(250, 246, 240, 0.72);
    border-bottom: 1px solid rgba(230, 221, 207, 0.7);
}

.clt-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 92px;
}

.clt-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.clt-brand__logo {
    display: block;
    width: clamp(176px, 17vw, 220px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(16, 29, 59, 0.14);
}

.clt-brand__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.clt-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.clt-nav a {
    color: rgba(20, 34, 65, 0.72);
    font-size: 0.92rem;
    transition: color 180ms ease;
}

.clt-nav a:hover,
.clt-nav a:focus-visible {
    color: var(--clt-ink);
}

.clt-header__actions,
.clt-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.clt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(160deg, #112145 0%, #213865 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 14px 30px rgba(17, 33, 69, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.clt-button:hover,
.clt-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(17, 33, 69, 0.24);
}

.clt-button--ghost {
    background: rgba(255, 255, 255, 0.78);
    color: var(--clt-ink);
    border-color: var(--clt-line);
    box-shadow: none;
}

.clt-button--small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.9rem;
}

.clt-button--full {
    width: 100%;
}

.clt-nav-toggle {
    display: none;
    border: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(23, 35, 64, 0.08);
}

.clt-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--clt-ink);
    border-radius: 999px;
}

.clt-main {
    overflow: clip;
}

.clt-main--simple {
    padding: 72px 0 96px;
}

.clt-simple-entry {
    background: var(--clt-card);
    border: 1px solid var(--clt-line);
    border-radius: var(--clt-radius-lg);
    padding: 40px;
    box-shadow: var(--clt-shadow);
}

.clt-wysiwyg > *:first-child {
    margin-top: 0;
}

.clt-wysiwyg > *:last-child {
    margin-bottom: 0;
}

.clt-hero,
.clt-section {
    padding: 42px 0;
}

.clt-hero {
    padding-top: 52px;
}

.clt-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 56px;
    align-items: center;
}

.clt-eyebrow {
    margin: 0 0 12px;
    color: var(--clt-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.3rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    max-width: 12ch;
}

h3 {
    font-size: 1.22rem;
    line-height: 1.1;
}

.clt-lead,
.clt-copy-stack p,
.clt-heading-note,
.clt-service-card p,
.clt-project-card__body span,
.clt-process-step p,
.clt-product-card__body span,
.clt-social-card p,
.clt-contact-card span,
.clt-contact-form label span,
.clt-footer p {
    color: var(--clt-muted);
}

.clt-lead {
    margin: 24px 0 0;
    max-width: 52ch;
    font-size: 1.06rem;
}

.clt-hero__visual {
    position: relative;
}

.clt-hero__visual::before {
    content: "";
    position: absolute;
    inset: auto auto -18px -24px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(234, 211, 188, 0.8);
    filter: blur(0.2px);
}

.clt-hero-art {
    position: relative;
    min-height: 490px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 32%),
        linear-gradient(145deg, #fff8ec 0%, #f6ebd5 100%);
    box-shadow: var(--clt-shadow);
    overflow: hidden;
}

.hero-piece {
    position: absolute;
    border-radius: 30px;
}

.hero-piece--arch {
    top: 82px;
    left: 52px;
    width: 132px;
    height: 132px;
    background: linear-gradient(160deg, #4f75af, #34548f);
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
}

.hero-piece--tile {
    top: 56px;
    right: 68px;
    width: 170px;
    height: 118px;
    background: linear-gradient(180deg, #6b8dbe 0%, #35528a 100%);
    clip-path: polygon(14% 0%, 100% 0%, 100% 82%, 0% 100%);
}

.hero-piece--slab {
    left: 126px;
    bottom: 72px;
    width: 158px;
    height: 112px;
    background: linear-gradient(180deg, #456aa3 0%, #27406d 100%);
    transform: rotate(-6deg);
}

.hero-piece--disc {
    left: 246px;
    top: 152px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6889c1 0%, #234173 70%);
}

.hero-piece--corner {
    right: 52px;
    bottom: 44px;
    width: 168px;
    height: 128px;
    background: linear-gradient(160deg, #6d90c3 0%, #355283 100%);
    border-bottom-right-radius: 38px;
    border-top-left-radius: 94px;
}

.hero-piece--orb {
    right: 142px;
    bottom: 76px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, #f4e2c8 0%, #d4a86c 72%);
    box-shadow: 0 12px 26px rgba(212, 168, 108, 0.28);
}

.hero-piece--label {
    left: 46%;
    bottom: 28px;
    transform: translateX(-50%);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--clt-muted);
    font-size: 0.9rem;
    line-height: 1.3;
    box-shadow: 0 18px 30px rgba(18, 34, 65, 0.08);
}

.hero-piece--label strong {
    display: block;
    margin-top: 2px;
    color: var(--clt-ink);
    font-size: 1rem;
}

.clt-section-heading {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.clt-section-heading--split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: end;
}

.clt-section-heading--center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.clt-copy-stack {
    display: grid;
    gap: 16px;
}

.clt-copy-stack p,
.clt-heading-note {
    margin: 0;
    max-width: 58ch;
}

.clt-heading-note--actions {
    display: grid;
    justify-items: start;
    gap: 18px;
}

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

.clt-stat-card,
.clt-service-card,
.clt-project-card,
.clt-product-card,
.clt-social-card,
.clt-contact-form,
.clt-contact-card,
.clt-calculator,
.clt-upload-card,
.clt-controls-card {
    background: var(--clt-card);
    border: 1px solid rgba(230, 221, 207, 0.86);
    box-shadow: var(--clt-shadow);
}

.clt-stat-card {
    padding: 28px;
    border-radius: 24px;
}

.clt-stat-card strong {
    display: block;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    letter-spacing: -0.04em;
}

.clt-card-grid {
    display: grid;
    gap: 20px;
}

.clt-card-grid--services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clt-card-grid--projects,
.clt-card-grid--products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clt-card-grid--products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clt-service-card {
    border-radius: 24px;
    padding: 24px;
}

.clt-service-card p {
    margin-bottom: 0;
}

.clt-icon-badge {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f3e7d6 0%, #ead7bd 100%);
    color: var(--clt-ink);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.clt-project-card,
.clt-product-card {
    overflow: hidden;
    border-radius: 28px;
}

.clt-project-card__body,
.clt-product-card__body {
    padding: 20px 20px 22px;
}

.clt-media {
    position: relative;
    isolation: isolate;
    min-height: 260px;
    overflow: hidden;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.8), transparent 36%),
        linear-gradient(135deg, #f7ead6 0%, #edd5b2 100%);
}

.clt-media span {
    position: absolute;
    display: block;
}

.clt-media--keys span {
    width: 24px;
    height: 96px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbf6ef 0%, #e3c59f 100%);
    box-shadow: 0 10px 20px rgba(102, 71, 32, 0.12);
}

.clt-media--keys span::after {
    content: "";
    position: absolute;
    inset: auto 2px 8px;
    height: 18px;
    border-radius: 999px;
    background: #d6a15f;
}

.clt-media--keys span:nth-child(1) { left: 20%; top: 18%; transform: rotate(4deg); }
.clt-media--keys span:nth-child(2) { left: 32%; top: 14%; transform: rotate(-3deg); }
.clt-media--keys span:nth-child(3) { left: 44%; top: 12%; transform: rotate(2deg); }
.clt-media--keys span:nth-child(4) { left: 56%; top: 14%; transform: rotate(-4deg); }
.clt-media--keys span:nth-child(5) { left: 68%; top: 20%; transform: rotate(6deg); }
.clt-media--keys span:nth-child(6) { left: 78%; top: 26%; transform: rotate(-7deg); height: 84px; }

.clt-media--clips span {
    width: 110px;
    height: 34px;
    border: 8px solid #315186;
    border-radius: 16px;
    background: transparent;
}

.clt-media--clips span:nth-child(1) { left: 14%; top: 36%; transform: rotate(-22deg); }
.clt-media--clips span:nth-child(2) { left: 38%; top: 48%; transform: rotate(18deg); }
.clt-media--clips span:nth-child(3) { left: 52%; top: 28%; transform: rotate(-18deg); width: 92px; }
.clt-media--clips span:nth-child(4) { left: 70%; top: 50%; transform: rotate(24deg); width: 78px; }

.clt-media--gears span {
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 28%, transparent 29%),
        conic-gradient(from 0deg, #e1ab66 0 18deg, transparent 18deg 36deg, #e1ab66 36deg 54deg, transparent 54deg 72deg, #e1ab66 72deg 90deg, transparent 90deg 108deg, #e1ab66 108deg 126deg, transparent 126deg 144deg, #e1ab66 144deg 162deg, transparent 162deg 180deg, #e1ab66 180deg 198deg, transparent 198deg 216deg, #e1ab66 216deg 234deg, transparent 234deg 252deg, #e1ab66 252deg 270deg, transparent 270deg 288deg, #e1ab66 288deg 306deg, transparent 306deg 324deg, #e1ab66 324deg 342deg, transparent 342deg 360deg);
    box-shadow: 0 14px 24px rgba(195, 143, 77, 0.16);
}

.clt-media--gears span:nth-child(1) { width: 108px; height: 108px; left: 14%; top: 42%; }
.clt-media--gears span:nth-child(2) { width: 86px; height: 86px; left: 42%; top: 28%; }
.clt-media--gears span:nth-child(3) { width: 122px; height: 122px; left: 60%; top: 46%; }
.clt-media--gears span:nth-child(4) { width: 70px; height: 70px; left: 28%; top: 14%; }
.clt-media--gears span:nth-child(5) { width: 56px; height: 56px; left: 76%; top: 18%; }

.clt-media--lamp span:nth-child(1) {
    left: 50%;
    top: 18%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff9e6 0%, #f6d08a 52%, #dfa551 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 50px rgba(241, 197, 112, 0.42);
}

.clt-media--lamp span:nth-child(2) {
    left: 50%;
    bottom: 24px;
    width: 64px;
    height: 110px;
    background: linear-gradient(180deg, #254170 0%, #1a2d50 100%);
    border-radius: 32px 32px 20px 20px;
    transform: translateX(-50%);
}

.clt-section--dark {
    margin-top: 20px;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.06), transparent 0 16%),
        linear-gradient(180deg, #101d3b 0%, #0e1933 100%);
    color: #f6f1e8;
}

.clt-section--dark .clt-eyebrow,
.clt-section--dark .clt-process-step__index,
.clt-section--dark .clt-process-step p {
    color: rgba(246, 241, 232, 0.7);
}

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

.clt-process::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(246, 241, 232, 0.18);
}

.clt-process-step {
    position: relative;
    padding-top: 76px;
}

.clt-process-step::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f5ead8 0%, #e2c39b 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.clt-process-step h3 {
    margin-bottom: 10px;
}

.clt-pricing {
    display: grid;
    gap: 28px;
}

.clt-calculator {
    padding: 26px;
    border-radius: 30px;
}

.clt-calculator__header {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
}

.clt-calculator__header h3 {
    margin-bottom: 8px;
}

.clt-calculator__header p,
.clt-calc-note,
.clt-estimate p,
.clt-preview-box p {
    margin: 0;
    color: var(--clt-muted);
}

.clt-calc-note {
    display: inline-flex;
    padding: 10px 14px;
    background: #f6efe6;
    border-radius: 999px;
    font-size: 0.92rem;
}

.clt-calculator__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 20px;
}

.clt-upload-card,
.clt-controls-card {
    border-radius: 24px;
    padding: 22px;
}

.clt-upload-field {
    display: grid;
    gap: 10px;
}

.clt-upload-field span,
.clt-range__meta span,
.clt-estimate span {
    font-size: 0.95rem;
    color: var(--clt-muted);
}

.clt-upload-field input {
    display: none;
}

.clt-upload-field strong {
    display: block;
    padding: 16px 18px;
    border: 1px dashed var(--clt-line);
    border-radius: 18px;
    background: #fcf8f2;
}

.clt-upload-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0 0;
}

.clt-preview-box {
    margin-top: 22px;
    min-height: 248px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 239, 231, 0.88) 100%);
    border: 1px solid var(--clt-line);
    padding: 28px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 10px;
}

.clt-preview-cube {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, #d1a567 0%, #8b6334 100%);
    transform: rotate(18deg);
    box-shadow: 18px 18px 24px rgba(104, 75, 38, 0.16);
}

.clt-controls-card {
    display: grid;
    gap: 18px;
}

.clt-range {
    display: grid;
    gap: 10px;
}

.clt-range__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.clt-range input[type="range"] {
    width: 100%;
    accent-color: #19335d;
}

.clt-estimate {
    margin-top: 8px;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(160deg, #112145 0%, #213865 100%);
    color: #fff;
}

.clt-estimate strong {
    display: block;
    margin: 8px 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
}

.clt-estimate p {
    color: rgba(255, 255, 255, 0.78);
}

.clt-media--cables span {
    width: 26px;
    height: 110px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f1bf70 0%, #d1903e 100%);
}

.clt-media--cables span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -52px;
    width: 4px;
    height: 58px;
    border-radius: 999px;
    background: rgba(221, 179, 118, 0.8);
    transform: translateX(-50%);
}

.clt-media--cables span:nth-child(1) { left: 16%; top: 20%; transform: rotate(-22deg); }
.clt-media--cables span:nth-child(2) { left: 34%; top: 14%; transform: rotate(-12deg); }
.clt-media--cables span:nth-child(3) { left: 52%; top: 18%; transform: rotate(8deg); }
.clt-media--cables span:nth-child(4) { left: 68%; top: 28%; transform: rotate(20deg); }
.clt-media--cables span:nth-child(5) { left: 80%; top: 18%; transform: rotate(24deg); height: 92px; }

.clt-media--desk span:nth-child(1) {
    left: 50%;
    bottom: 28px;
    width: 160px;
    height: 120px;
    background: linear-gradient(180deg, #2f4c80 0%, #1f365f 100%);
    border-radius: 24px;
    transform: translateX(-50%);
}

.clt-media--desk span:nth-child(2) {
    left: 50%;
    bottom: 40px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(180deg, #efb668 0%, #c98336 100%);
    transform: translateX(-50%);
}

.clt-media--desk span:nth-child(3),
.clt-media--desk span:nth-child(4) {
    width: 18px;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, #d59c51 0%, #8d6030 100%);
    bottom: 94px;
}

.clt-media--desk span:nth-child(3) {
    left: 38%;
    height: 108px;
    box-shadow: 26px -12px 0 0 #2f4c80, 52px 2px 0 0 #d59c51, 78px -16px 0 0 #2f4c80;
}

.clt-media--desk span:nth-child(4) {
    left: 58%;
    height: 92px;
    box-shadow: 24px -10px 0 0 #d59c51, -26px -2px 0 0 #2f4c80;
}

.clt-media--tools span {
    width: 24px;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, #d49e53 0%, #7b552d 100%);
    bottom: 24px;
}

.clt-media--tools span::before {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: -62px;
    height: 56px;
    border-radius: 12px 12px 4px 4px;
    background: #1a3157;
}

.clt-media--tools span:nth-child(1) { left: 18%; height: 120px; }
.clt-media--tools span:nth-child(2) { left: 34%; height: 144px; }
.clt-media--tools span:nth-child(3) { left: 50%; height: 112px; }
.clt-media--tools span:nth-child(4) { left: 66%; height: 154px; }
.clt-media--tools span:nth-child(5) { left: 82%; height: 126px; }

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

.clt-social-card {
    border-radius: 26px;
    padding: 28px;
}

.clt-social-card__label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4ebde;
    color: var(--clt-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.clt-social-card a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--clt-ink);
    font-weight: 700;
}

.clt-section--contact {
    padding-bottom: 72px;
}

.clt-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 34px;
    align-items: start;
}

.clt-contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.clt-contact-card {
    padding: 20px 22px;
    border-radius: 20px;
}

.clt-contact-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.05rem;
}

.clt-contact-form {
    border-radius: 28px;
    padding: 24px;
    display: grid;
    gap: 16px;
}

.clt-contact-form label {
    display: grid;
    gap: 10px;
}

.clt-contact-form input,
.clt-contact-form textarea {
    width: 100%;
    border: 1px solid var(--clt-line);
    border-radius: 16px;
    background: #fcf8f2;
    color: var(--clt-ink);
    padding: 14px 16px;
}

.clt-contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.clt-footer {
    background: #101d3b;
    color: rgba(246, 241, 232, 0.9);
}

.clt-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    padding: 24px 0;
}

.clt-footer strong {
    display: block;
    margin-bottom: 8px;
}

.clt-footer__brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.clt-footer__logo {
    width: 180px;
    max-width: 40vw;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.clt-footer p {
    margin: 0;
    color: rgba(246, 241, 232, 0.72);
}

.clt-elementor-content {
    padding-top: 24px;
}

@media (max-width: 1100px) {
    .clt-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .clt-nav-toggle {
        display: block;
        justify-self: end;
    }

    .clt-nav,
    .clt-header__actions {
        display: none;
    }

    .clt-header.is-open .clt-header__inner {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 18px 0 22px;
    }

    .clt-header.is-open .clt-brand {
        margin-bottom: 8px;
    }

    .clt-header.is-open .clt-nav-toggle {
        position: absolute;
        top: 22px;
        right: max(20px, calc((100vw - var(--clt-container)) / 2));
    }

    .clt-header.is-open .clt-nav,
    .clt-header.is-open .clt-header__actions {
        display: flex;
    }

    .clt-header.is-open .clt-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 0 0;
    }

    .clt-header.is-open .clt-header__actions {
        padding-top: 12px;
    }

    .clt-hero__grid,
    .clt-section-heading--split,
    .clt-calculator__grid,
    .clt-contact {
        grid-template-columns: 1fr;
    }

    .clt-card-grid--services,
    .clt-card-grid--projects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .clt-process::before {
        display: none;
    }
}

@media (max-width: 720px) {
    .clt-container {
        width: min(calc(100vw - 28px), 100%);
    }

    .clt-brand__logo {
        width: 160px;
        border-radius: 16px;
    }

    .clt-hero,
    .clt-section {
        padding: 28px 0;
    }

    .clt-hero-art {
        min-height: 360px;
    }

    .clt-button,
    .clt-button--ghost {
        width: 100%;
    }

    .clt-actions,
    .clt-header__actions,
    .clt-upload-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .clt-stats,
    .clt-card-grid--services,
    .clt-card-grid--projects,
    .clt-card-grid--products,
    .clt-process,
    .clt-social-grid,
    .clt-footer__inner {
        grid-template-columns: 1fr;
    }

    .clt-footer__inner {
        display: grid;
        align-items: start;
    }

    .clt-footer__brand {
        display: grid;
        gap: 12px;
    }

    .clt-footer__logo {
        width: 160px;
        max-width: 100%;
    }

    .clt-calculator,
    .clt-simple-entry {
        padding: 22px;
    }

    h1 {
        max-width: 9ch;
    }

    h2 {
        max-width: 10ch;
    }
}
