
:root {
    --font: "Shabnam", Tahoma, Arial, sans-serif;
    --bg: #f3f1ec;
    --surface: #fff;
    --surface-2: #ece8e0;
    --ink: #171714;
    --ink-soft: #625f58;
    --line: rgba(23, 23, 20, .12);
    --dark: #181815;
    --dark-2: #24241f;
    --gold: #b99062;
    --gold-deep: #8c653e;
    --cream: #e9ded0;
    --success: #2f7a4c;
    --danger: #a23a32;
    --radius-sm: 16px;
    --radius: 26px;
    --radius-lg: 42px;
    --shadow: 0 30px 90px rgba(31, 27, 20, .12);
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.8;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: #fff; }

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}
.section-space { padding: 110px 0; }
.skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 9999;
    transform: translateY(-160%);
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.site-header.is-scrolled {
    background: rgba(243, 241, 236, .88);
    backdrop-filter: blur(20px);
    border-color: var(--line);
}
.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.main-nav a {
    position: relative;
    padding: 12px 0;
    color: #37362f;
}
.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 100%;
    bottom: 6px;
    height: 2px;
    background: var(--gold-deep);
    transition: left .25s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { left: 0; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.phone-link {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    text-align: left;
}
.phone-link span { color: var(--ink-soft); font-size: 10px; }
.phone-link strong { font-size: 14px; direction: ltr; }
.button {
    min-height: 50px;
    border: 0;
    border-radius: 15px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--dark); color: #fff; }
.button-dark:hover { background: #000; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.button-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.button-gold { background: var(--gold); color: #171714; }
.button-gold:hover { background: #cda675; box-shadow: 0 15px 35px rgba(185, 144, 98, .25); }
.button-block { width: 100%; }
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 12px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 99px;
    transition: transform .25s, opacity .25s;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--gold-deep);
}
.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}
.eyebrow-light { color: #d6b38b; }
.display-title {
    margin: 18px 0 24px;
    font-size: clamp(48px, 6.6vw, 94px);
    line-height: 1.12;
    letter-spacing: -3.5px;
}
.display-title span { color: var(--gold-deep); }
.lead {
    max-width: 670px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 2;
}
.hero {
    min-height: 100svh;
    padding: 145px 0 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    gap: 48px;
    align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-trust {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.trust-item {
    padding: 18px;
    border-top: 1px solid var(--line);
}
.trust-item strong { display: block; font-size: 24px; line-height: 1.3; }
.trust-item span { color: var(--ink-soft); font-size: 12px; }

.hero-gallery {
    min-height: 650px;
    position: relative;
}
.hero-image-main,
.hero-image-side {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-image-main {
    inset: 0 0 65px 85px;
    border-radius: 52px 12px 52px 52px;
}
.hero-image-main::after,
.hero-image-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.38));
}
.hero-image-main img,
.hero-image-side img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-side {
    width: 230px;
    height: 290px;
    left: 0;
    bottom: 0;
    border: 10px solid var(--bg);
    border-radius: 30px;
}
.hero-caption {
    position: absolute;
    right: 28px;
    bottom: 90px;
    z-index: 2;
    color: #fff;
}
.hero-caption small { display: block; opacity: .76; }
.hero-caption strong { font-size: 20px; }
.hero-float {
    position: absolute;
    top: 40px;
    left: 14px;
    z-index: 3;
    width: 170px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}
.hero-float strong { display: block; margin-bottom: 7px; }
.hero-float span { color: var(--ink-soft); font-size: 12px; }

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 46px;
}
.section-header h2,
.content-title {
    margin: 12px 0 0;
    font-size: clamp(35px, 4.2vw, 58px);
    line-height: 1.25;
    letter-spacing: -2px;
}
.section-header p {
    max-width: 540px;
    margin: 0;
    color: var(--ink-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.service-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: #fcfbf8;
}
.service-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-index span:first-child { color: var(--gold-deep); font-weight: 700; }
.service-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}
.service-card h3 { margin: 74px 0 14px; font-size: 22px; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.service-card a { position: absolute; inset: 0; z-index: 2; }

.dark-section {
    position: relative;
    background: var(--dark);
    color: #fff;
    overflow: hidden;
}
.dark-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -250px;
    border-radius: 50%;
    background: rgba(185, 144, 98, .12);
    filter: blur(2px);
}
.dark-section .section-header p { color: #aaa89f; }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.project-card {
    min-width: 0;
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
}
.project-image {
    position: relative;
    width: 100%;
    height: 420px;
    border: 0;
    padding: 0;
    overflow: hidden;
    cursor: zoom-in;
    background: #ddd;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.project-image:hover img { transform: scale(1.045); }
.project-view {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 13px;
    border-radius: 12px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 700;
    transform: translateY(8px);
    opacity: 0;
    transition: .25s;
}
.project-image:hover .project-view { opacity: 1; transform: translateY(0); }
.project-content { padding: 25px 27px 27px; }
.project-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.project-meta span {
    padding: 6px 10px;
    border-radius: 99px;
    background: var(--surface-2);
    color: var(--ink-soft);
    font-size: 10px;
}
.project-content h3 { margin: 16px 0 9px; font-size: 22px; }
.project-content p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.project-footer {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
}
.project-footer span { color: var(--ink-soft); }
.project-footer a { color: var(--gold-deep); font-weight: 700; }

.portfolio-actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.process-card {
    min-height: 275px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
}
.process-number {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--dark);
    color: #fff;
    font-size: 12px;
}
.process-card h3 { margin: 60px 0 12px; font-size: 20px; }
.process-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.price-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--surface);
}
.price-card.featured {
    background: var(--dark);
    color: #fff;
    transform: translateY(-12px);
    box-shadow: var(--shadow);
}
.price-label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 99px;
    background: var(--surface-2);
    color: var(--ink-soft);
    font-size: 11px;
}
.featured .price-label { background: rgba(255,255,255,.1); color: #d7d4cb; }
.price-card h3 { margin: 22px 0 8px; font-size: 28px; }
.price-card > p { min-height: 58px; margin: 0; color: var(--ink-soft); font-size: 13px; }
.featured > p { color: #aaa89f; }
.price-value {
    margin: 26px 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.featured .price-value { border-color: rgba(255,255,255,.12); }
.price-value strong { display: block; font-size: 24px; }
.price-value span { color: var(--ink-soft); font-size: 11px; }
.featured .price-value span { color: #aaa89f; }
.price-features { list-style: none; margin: 0 0 28px; padding: 0; }
.price-features li {
    position: relative;
    padding: 9px 24px 9px 0;
    color: var(--ink-soft);
    font-size: 13px;
}
.featured .price-features li { color: #d0cdc5; }
.price-features li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 700;
}
.price-card .button { width: 100%; }

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-collage {
    min-height: 620px;
    position: relative;
}
.about-collage .image-a,
.about-collage .image-b {
    position: absolute;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.about-collage .image-a {
    inset: 0 70px 80px 0;
    width: calc(100% - 70px);
    height: calc(100% - 80px);
    border-radius: 18px 48px 18px 48px;
}
.about-collage .image-b {
    width: 250px;
    height: 300px;
    left: 0;
    bottom: 0;
    border: 10px solid var(--bg);
    border-radius: 30px;
}
.about-badge {
    position: absolute;
    top: 35px;
    left: 15px;
    z-index: 2;
    padding: 22px;
    background: var(--dark);
    color: #fff;
    border-radius: 20px;
}
.about-badge strong { display: block; font-size: 28px; }
.about-badge span { color: #aaa89f; font-size: 11px; }
.about-copy p { color: var(--ink-soft); }
.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 34px;
}
.check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-list i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--gold-deep);
    border-radius: 10px;
    font-style: normal;
}

.consultation-shell {
    padding: 58px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 58px;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.consultation-copy h2 {
    margin: 16px 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.3;
}
.consultation-copy > p { color: #aaa89f; }
.consultation-points {
    display: grid;
    gap: 11px;
    margin: 30px 0;
}
.consultation-points div {
    display: flex;
    align-items: center;
    gap: 13px;
}
.consultation-points strong {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(185,144,98,.15);
    color: #d5b185;
    font-size: 11px;
}
.consultation-points span { color: #d0cdc5; font-size: 13px; }
.consult-phone {
    display: inline-flex;
    flex-direction: column;
    margin-top: 10px;
}
.consult-phone small { color: #aaa89f; }
.consult-phone strong { font-size: 27px; direction: ltr; }
.consultation-form {
    padding: 29px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 26px;
    background: rgba(255,255,255,.055);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.form-field { display: grid; gap: 8px; }
.form-field span { color: #cfcbc1; font-size: 11px; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    outline: 0;
    border-radius: 13px;
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 13px 14px;
    transition: border .2s, background .2s, box-shadow .2s;
}
.form-field select option { color: #111; background: #fff; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #85837c; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(185,144,98,.8);
    background: rgba(255,255,255,.11);
    box-shadow: 0 0 0 3px rgba(185,144,98,.12);
}
.form-field-wide { grid-column: 1 / -1; }
.consultation-form .button { margin-top: 16px; }
.form-status { min-height: 27px; margin: 10px 0 0; font-size: 12px; }
.form-status.success { color: #86dca8; }
.form-status.error { color: #ffaaa2; }
.privacy-note { display: block; color: #85837c; font-size: 10px; text-align: center; }
.honeypot { position: absolute !important; right: -10000px !important; }

.page-hero {
    padding: 170px 0 80px;
}
.page-hero-inner {
    padding: 55px;
    border-radius: var(--radius-lg);
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero-inner::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -100px;
    top: -240px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}
.page-hero h1 {
    max-width: 830px;
    margin: 18px 0;
    font-size: clamp(43px, 6vw, 76px);
    line-height: 1.18;
    letter-spacing: -2.8px;
}
.page-hero p { max-width: 720px; margin: 0; color: #aaa89f; font-size: 16px; }
.category-links {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.category-links a {
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 99px;
    color: #d0cdc5;
    font-size: 11px;
}
.category-links a:hover,
.category-links a.is-active { background: #fff; color: #171714; }

.portfolio-page .projects-grid { grid-template-columns: repeat(2, 1fr); }
.portfolio-page .project-card { border: 1px solid var(--line); }

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
}
.stat-box { padding: 35px; background: var(--surface); }
.stat-box strong { display: block; font-size: 34px; }
.stat-box span { color: var(--ink-soft); font-size: 12px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.value-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.value-card span { color: var(--gold-deep); font-size: 12px; font-weight: 700; }
.value-card h3 { margin: 34px 0 12px; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 25px;
}
.contact-panel,
.contact-image {
    border-radius: var(--radius);
    overflow: hidden;
}
.contact-panel {
    padding: 42px;
    background: var(--surface);
    border: 1px solid var(--line);
}
.contact-panel h2 { margin: 0 0 14px; font-size: 36px; }
.contact-panel > p { color: var(--ink-soft); }
.contact-list { margin-top: 34px; display: grid; gap: 18px; }
.contact-list div {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.contact-list small { display: block; color: var(--ink-soft); }
.contact-list strong { font-size: 18px; }
.contact-image img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }

.site-footer {
    padding: 80px 0 25px;
    background: #11110f;
    color: #fff;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr .65fr .65fr 1fr;
    gap: 50px;
}
.footer-brand p {
    max-width: 350px;
    margin-top: 22px;
    color: #8f8d86;
    font-size: 13px;
}
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h3 { margin: 0 0 12px; font-size: 14px; }
.footer-column a { color: #96948d; font-size: 12px; }
.footer-column a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact > span { color: #96948d; font-size: 11px; }
.footer-contact > a:not(.button) { font-size: 27px; direction: ltr; }
.footer-contact p { color: #96948d; font-size: 11px; }
.footer-contact .button { margin-top: 10px; }
.footer-bottom {
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.09);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #77756f;
    font-size: 10px;
}
.mobile-call-bar { display: none; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 30px;
    background: rgba(5,5,4,.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: min(1200px, 95vw);
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 30px 100px rgba(0,0,0,.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}

@media (max-width: 1100px) {
    .main-nav { gap: 17px; }
    .phone-link { display: none; }
    .services-grid,
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { gap: 25px; }
    .hero-gallery { min-height: 560px; }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .section-space { padding: 80px 0; }
    .header-inner { min-height: 76px; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .main-nav {
        position: fixed;
        top: 76px;
        right: 20px;
        left: 20px;
        max-height: calc(100vh - 98px);
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        overflow: auto;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255,255,255,.97);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: .25s;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav a { padding: 12px 14px; border-radius: 11px; }
    .main-nav a:hover { background: var(--surface-2); }
    .main-nav a::after { display: none; }
    .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
    .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { min-height: auto; padding-top: 125px; }
    .hero-grid,
    .about-split,
    .consultation-shell,
    .contact-grid { grid-template-columns: 1fr; }
    .hero-copy { order: 1; }
    .hero-gallery { order: 2; min-height: 590px; }
    .display-title { font-size: clamp(48px, 10vw, 75px); }
    .services-grid,
    .projects-grid,
    .portfolio-page .projects-grid,
    .pricing-grid,
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { transform: none; }
    .section-header { align-items: flex-start; flex-direction: column; gap: 18px; }
    .about-split { gap: 45px; }
    .consultation-shell { padding: 38px; gap: 35px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .container { width: min(100% - 26px, var(--container)); }
    .section-space { padding: 65px 0; }
    .display-title { font-size: 45px; letter-spacing: -2px; }
    .lead { font-size: 15px; }
    .hero { padding: 110px 0 45px; }
    .hero-gallery { min-height: 430px; }
    .hero-image-main { inset: 0 0 45px 35px; border-radius: 35px 10px 35px 35px; }
    .hero-image-side { width: 145px; height: 185px; border-width: 7px; }
    .hero-float { width: 140px; top: 22px; padding: 13px; }
    .hero-float strong { font-size: 13px; }
    .hero-trust { grid-template-columns: 1fr; gap: 0; }
    .trust-item { display: flex; align-items: center; justify-content: space-between; }
    .trust-item strong { font-size: 20px; }

    .services-grid,
    .projects-grid,
    .portfolio-page .projects-grid,
    .process-grid,
    .pricing-grid,
    .values-grid { grid-template-columns: 1fr; }
    .project-image { height: 300px; }
    .section-header h2,
    .content-title { font-size: 36px; letter-spacing: -1.4px; }
    .service-card { min-height: 270px; }
    .service-card h3 { margin-top: 48px; }
    .process-card { min-height: 225px; }
    .process-card h3 { margin-top: 40px; }
    .price-card { padding: 27px; }

    .about-collage { min-height: 450px; }
    .about-collage .image-a { inset: 0 35px 55px 0; width: calc(100% - 35px); height: calc(100% - 55px); }
    .about-collage .image-b { width: 170px; height: 210px; border-width: 7px; }
    .about-badge { padding: 14px; top: 20px; }
    .about-badge strong { font-size: 21px; }

    .consultation-shell { padding: 28px 19px; border-radius: 28px; }
    .consultation-form { padding: 20px 15px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field-wide { grid-column: auto; }

    .page-hero { padding: 115px 0 50px; }
    .page-hero-inner { padding: 35px 22px; border-radius: 28px; }
    .page-hero h1 { font-size: 43px; letter-spacing: -2px; }
    .stats-strip { grid-template-columns: 1fr; }
    .contact-panel { padding: 28px 22px; }
    .contact-image img { min-height: 360px; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
    .footer-brand,
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .site-footer { padding-bottom: 90px; }

    .mobile-call-bar {
        position: fixed;
        right: 10px;
        left: 10px;
        bottom: 10px;
        z-index: 1200;
        padding: 6px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 18px;
        background: rgba(24,24,21,.92);
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 60px rgba(0,0,0,.25);
    }
    .mobile-call-bar a {
        min-height: 46px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
    }
    .mobile-call-bar a:last-child { background: var(--gold); color: #151511; }
}

.hero h1, .section-title h2 {font-size:clamp(2rem,4vw,3.2rem); line-height:1.35;}
.card h3, .project-card h3 {font-size:1.15rem; line-height:1.5;}
.project-grid {gap:24px;}
.project-card img {aspect-ratio:4/3; object-fit:cover;}
.category-badge {display:inline-block;background:#e9ded0;padding:6px 14px;border-radius:99px;font-size:.85rem;}


/* Timbera UI refinement */
.hero-title, .hero h1 {font-size: clamp(34px,4vw,52px) !important; line-height:1.35 !important;}
.section-title, .section-head h2 {font-size:32px !important; line-height:1.5 !important;}
h1 {font-size:42px !important;}
h2 {font-size:30px !important;}
h3 {font-size:20px !important;}
.project-content h3, .service-card h3 {font-size:18px !important; margin-top:32px !important;}
.phone-link strong, .consult-phone, footer a[href^="tel"] {font-family:"Shabnam",Tahoma,sans-serif !important; direction:rtl !important; font-size:15px !important;}
body {font-family:"Shabnam",Tahoma,Arial,sans-serif !important;}

/* Timbera brand assets */
.brand {
    min-width: 184px;
    line-height: 0;
}
.brand-logo {
    width: 220px;
    height: auto;
    display: block;
}
.brand-logo-light {
    width: 220px;
}
.footer-brand .brand {
    min-width: 196px;
}
@media (max-width: 720px) {
    .brand { min-width: 142px; }
    .brand-logo { width: 142px; }
    .brand-logo-light { width: 170px; }
}
@media (max-width: 390px) {
    .brand { min-width: 128px; }
    .brand-logo { width: 128px; }
}

/* Fix Timbera logo clipping */
.header-inner,
.brand {
    overflow: visible;
}

.brand {
    flex: 0 0 auto;
    min-width: 260px;
}

.brand-logo,
.brand-logo-light {
    width: 260px;
    max-width: none;
    height: auto;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .brand {
        min-width: 190px;
    }
    .brand-logo,
    .brand-logo-light {
        width: 190px;
    }
}

/* Timbera v1.2 — header logo, complete imagery, refined service cards */
.site-header .brand {
    min-width: 0;
    max-width: 228px;
    overflow: visible;
    line-height: 0;
}
.site-header .brand-logo {
    display: block;
    width: 218px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-brand .brand-logo-light {
    width: 220px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Keep the entire hero photography visible instead of cropping it aggressively. */
.hero-image-main,
.hero-image-side {
    background: #dedbd5;
}
.hero-image-main img,
.hero-image-side img {
    object-fit: contain;
    object-position: center;
}
.hero-image-main::after,
.hero-image-side::after {
    pointer-events: none;
    background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,.22));
}
.hero-image-main {
    inset: 0 0 62px 72px;
}
.hero-image-side {
    background: #f5f2ec;
}
.hero-caption {
    bottom: 82px;
}

.services-grid {
    gap: 20px;
}
.service-card {
    min-height: 315px;
    padding: 0;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,247,241,.95));
    border: 1px solid rgba(140,101,62,.16);
    border-radius: 28px;
    box-shadow: 0 12px 35px rgba(31,27,20,.055);
    isolation: isolate;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle at 88% 8%, rgba(185,144,98,.13), transparent 42%);
    opacity: .7;
    transition: opacity .3s ease;
}
.service-card::after {
    content: "";
    position: absolute;
    right: 24px;
    left: 24px;
    bottom: 0;
    height: 3px;
    border-radius: 99px 99px 0 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(.35);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(140,101,62,.32);
    box-shadow: 0 24px 55px rgba(31,27,20,.12);
    background: #fff;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); opacity: 1; }
.service-card-head {
    min-height: 118px;
    padding: 24px 26px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(23,23,20,.075);
}
.service-number {
    padding-top: 7px;
    color: var(--gold-deep);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
}
.service-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(140,101,62,.22);
    border-radius: 20px;
    background: rgba(255,255,255,.74);
    box-shadow: inset 0 0 0 5px rgba(185,144,98,.055);
    color: var(--gold-deep);
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
.service-icon svg {
    width: 38px;
    height: 38px;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card:hover .service-icon {
    transform: translateY(-3px);
    background: var(--dark);
    color: #d8b58b;
}
.service-card-body {
    padding: 25px 26px 27px;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.service-card .service-card-body h3,
.project-content h3.service-card-title {
    margin: 0 0 12px !important;
    font-size: 20px !important;
    line-height: 1.5;
}
.service-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 2;
}
.service-link-label {
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
    color: var(--gold-deep);
    font-size: 11px;
    font-weight: 700;
    border-bottom: 1px solid rgba(140,101,62,.28);
}
.service-card a {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
}
.service-card a:focus-visible {
    outline: 3px solid rgba(185,144,98,.55);
    outline-offset: 4px;
}

.process-grid {
    position: relative;
    gap: 18px;
}
.process-card {
    min-height: 250px;
    padding: 27px;
    background: rgba(255,255,255,.58);
    border-color: rgba(140,101,62,.16);
    box-shadow: 0 10px 28px rgba(31,27,20,.04);
}
.process-number {
    width: 52px;
    height: 52px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.1);
    color: #d9b889;
    font-size: 13px;
    font-weight: 800;
}
.process-card h3 {
    margin: 48px 0 12px;
}

.phone-link strong,
.consult-phone strong,
.footer-contact > a:not(.button),
.contact-list a[href^="tel"] {
    direction: rtl !important;
    unicode-bidi: plaintext;
}

@media (max-width: 1100px) {
    .site-header .brand { max-width: 190px; }
    .site-header .brand-logo { width: 184px; }
}

@media (max-width: 900px) {
    .site-header .brand { max-width: 188px; }
    .site-header .brand-logo { width: 180px; }
    .hero-image-main { inset: 0 0 58px 55px; }
}

@media (max-width: 620px) {
    .site-header .brand { max-width: 156px; }
    .site-header .brand-logo { width: 152px; }
    .hero-image-main { inset: 0 0 44px 24px; }
    .hero-image-side { width: 132px; height: 172px; }
    .service-card { min-height: 280px; }
    .service-card-head { min-height: 102px; padding: 20px 22px 15px; }
    .service-icon { width: 58px; height: 58px; border-radius: 18px; }
    .service-icon svg { width: 33px; height: 33px; }
    .service-card-body { padding: 22px; }
    .process-card h3 { margin-top: 36px; }
}


/* Timbera v1.2.1 — final logo fit fix */
.site-header .header-inner {
    gap: 20px;
    overflow: visible;
}
.site-header .brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    overflow: visible;
}
.site-header .brand-logo {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
}
.site-header .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: 22px;
}
.site-header .header-actions {
    flex: 0 0 auto;
}
.footer-brand .brand,
.site-footer .brand {
    width: 238px;
    min-width: 238px;
    max-width: 238px;
}
.footer-brand .brand-logo-light,
.site-footer .brand-logo-light {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
}
@media (max-width: 1260px) {
    .site-header .brand {
        flex-basis: 270px;
        width: 270px;
        min-width: 270px;
        max-width: 270px;
    }
    .site-header .brand-logo {
        width: 100%;
    }
    .site-header .main-nav {
        gap: 18px;
        font-size: 13px;
    }
}
@media (max-width: 1100px) {
    .site-header .brand {
        flex-basis: 238px;
        width: 238px;
        min-width: 238px;
        max-width: 238px;
    }
    .site-header .main-nav {
        gap: 14px;
        font-size: 12.5px;
    }
}
@media (max-width: 900px) {
    .site-header .brand {
        flex-basis: 190px;
        width: 190px;
        min-width: 190px;
        max-width: 190px;
    }
    .site-header .brand-logo {
        width: 100%;
    }
}
@media (max-width: 390px) {
    .site-header .brand {
        flex-basis: 165px;
        width: 165px;
        min-width: 165px;
        max-width: 165px;
    }
}


/* Timbera v1.2.2 — smaller stable header logo */
.site-header .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}
.site-header .brand {
    flex: initial;
    display: block;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    line-height: 0;
    overflow: visible;
}
.site-header .brand-logo {
    display: block;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}
.site-header .main-nav {
    min-width: 0;
    justify-content: center;
    gap: 20px;
}
.site-header .header-actions {
    justify-self: end;
}
.site-footer .brand,
.footer-brand .brand {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
}
.site-footer .brand-logo-light,
.footer-brand .brand-logo-light {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}
@media (max-width: 1260px) {
    .site-header .brand,
    .site-header .brand-logo {
        width: 205px;
        min-width: 205px;
        max-width: 205px;
    }
    .site-header .main-nav { gap: 16px; font-size: 13px; }
}
@media (max-width: 1100px) {
    .site-header .brand,
    .site-header .brand-logo {
        width: 190px;
        min-width: 190px;
        max-width: 190px;
    }
    .site-header .main-nav { gap: 13px; font-size: 12.5px; }
}
@media (max-width: 900px) {
    .site-header .header-inner {
        display: flex;
        gap: 14px;
    }
    .site-header .brand,
    .site-header .brand-logo {
        width: 175px;
        min-width: 175px;
        max-width: 175px;
    }
}
@media (max-width: 390px) {
    .site-header .brand,
    .site-header .brand-logo {
        width: 155px;
        min-width: 155px;
        max-width: 155px;
    }
}


/* Timbera v1.2.5 — clean aligned process timeline */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding-top: 4px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 41px;
    right: 12.5%;
    left: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(185,144,98,.22), rgba(185,144,98,.9), rgba(185,144,98,.22));
    z-index: 0;
}

.timeline-step {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.timeline-point {
    position: relative;
    z-index: 2;
    min-height: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-number {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 7px solid var(--bg);
    border-radius: 50%;
    background: var(--dark);
    color: #d8b58b;
    box-shadow: 0 10px 24px rgba(31,27,20,.14);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.timeline-label {
    margin-top: 8px;
    color: var(--gold-deep);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.timeline-card {
    position: relative;
    flex: 1;
    min-height: 280px;
    padding: 28px 24px 25px;
    overflow: hidden;
    border: 1px solid rgba(140,101,62,.15);
    border-radius: 26px;
    background: linear-gradient(155deg, #fff, #f9f5ee);
    box-shadow: 0 18px 45px rgba(31,27,20,.075);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.timeline-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -85px;
    right: -65px;
    border-radius: 50%;
    background: rgba(185,144,98,.11);
    pointer-events: none;
}

.timeline-card:hover {
    transform: translateY(-6px);
    border-color: rgba(140,101,62,.28);
    box-shadow: 0 26px 60px rgba(31,27,20,.12);
}

.timeline-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(140,101,62,.2);
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    color: var(--gold-deep);
    box-shadow: inset 0 0 0 5px rgba(185,144,98,.05);
}

.timeline-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.timeline-stage {
    position: absolute;
    top: 25px;
    left: 23px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(185,144,98,.12);
    color: var(--gold-deep);
    font-size: 10px;
    font-weight: 800;
}

.timeline-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.55;
}

.timeline-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 2;
}

@media (max-width: 1100px) {
    .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }
    .process-timeline::before { display: none; }
    .timeline-card { min-height: 255px; }
}

@media (max-width: 620px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-right: 42px;
    }
    .process-timeline::before {
        display: block;
        top: 28px;
        right: 19px;
        bottom: 28px;
        left: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(185,144,98,.2), rgba(185,144,98,.9), rgba(185,144,98,.2));
    }
    .timeline-step { display: block; }
    .timeline-point {
        position: absolute;
        top: 18px;
        right: -42px;
        min-height: 0;
    }
    .timeline-number {
        width: 42px;
        height: 42px;
        border-width: 5px;
        font-size: 12px;
    }
    .timeline-label { display: none; }
    .timeline-card {
        min-height: auto;
        padding: 24px 20px 22px;
        border-radius: 22px;
    }
    .timeline-stage { top: 22px; left: 20px; }
    .timeline-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }
    .timeline-card h3 { font-size: 18px; }
}


/* Timbera v1.3.0 — page structure, about page and phone alignment */

/* Supporting descriptions now sit beneath the heading instead of floating beside it. */
.section-header {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: start;
    align-items: start;
    gap: 18px;
    margin-bottom: 44px;
}
.section-header > div {
    min-width: 0;
}
.section-header h2 {
    max-width: 780px;
}
.section-header p {
    position: relative;
    max-width: 760px;
    margin: 0;
    padding: 15px 20px 15px 18px;
    border: 1px solid rgba(140,101,62,.12);
    border-right: 3px solid var(--gold);
    border-radius: 16px;
    background: rgba(255,255,255,.58);
    color: var(--ink-soft);
    line-height: 2;
}
.dark-section .section-header p {
    border-color: rgba(255,255,255,.1);
    border-right-color: var(--gold);
    background: rgba(255,255,255,.055);
    color: #c2bfb7;
}

/* Phone numbers: right-aligned container, stable LTR numeric order. */
.phone-number {
    display: inline-block;
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
    text-align: left;
    font-variant-numeric: tabular-nums;
    letter-spacing: .2px;
}
.phone-number-inline {
    vertical-align: baseline;
    margin-inline: 4px;
}
.phone-link {
    align-items: flex-end;
    text-align: right;
}
.phone-link strong {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    direction: rtl !important;
}
.consult-phone {
    align-items: flex-start;
    text-align: right;
}
.consult-phone strong {
    display: block;
    width: 100%;
    direction: rtl !important;
    text-align: right;
}
.footer-contact {
    align-items: flex-start;
    text-align: right;
}
.footer-phone {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    direction: rtl;
}
.contact-list strong,
.contact-list a[href^="tel"] {
    display: block;
    text-align: right;
}
.mobile-call-bar a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    direction: rtl;
}

/* Cleaner page hero copy placement. */
.page-hero-inner > p {
    margin-top: 18px;
    padding-right: 18px;
    border-right: 3px solid var(--gold);
    line-height: 2;
}

/* About page hero */
.about-page-hero {
    padding-bottom: 30px;
}
.about-hero-layout {
    position: relative;
    min-height: 610px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 28px;
    padding: 34px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--dark);
    color: #fff;
    box-shadow: var(--shadow);
}
.about-hero-layout::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -310px;
    right: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
}
.about-hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 34px 26px;
}
.about-hero-copy h1 {
    max-width: 670px;
    margin: 18px 0 22px;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 72px) !important;
    line-height: 1.22;
    letter-spacing: -2.5px;
}
.about-hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: #b9b6ad;
    font-size: 15px;
    line-height: 2.15;
}
.about-hero-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.about-hero-tags span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    color: #d5d1c8;
    font-size: 11px;
}
.about-hero-media {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 14px 34px 34px 34px;
}
.about-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.46));
}
.about-hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-hero-card {
    position: absolute;
    right: 24px;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 19px 20px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    background: rgba(20,20,17,.7);
    backdrop-filter: blur(14px);
}
.about-hero-card small,
.about-hero-card span {
    display: block;
    color: #aaa89f;
    font-size: 11px;
}
.about-hero-card strong {
    display: block;
    margin: 5px 0 7px;
    font-size: 17px;
}

/* About story */
.about-story-section {
    padding-top: 80px;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 70px;
    align-items: center;
}
.about-visual-stack {
    position: relative;
    min-height: 650px;
}
.about-visual-main {
    position: absolute;
    inset: 0 78px 75px 0;
    margin: 0;
    overflow: hidden;
    border-radius: 24px 48px 24px 48px;
    box-shadow: var(--shadow);
}
.about-visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-visual-main figcaption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(24,24,21,.78);
    color: #fff;
    backdrop-filter: blur(10px);
    font-size: 11px;
}
.about-visual-secondary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 300px;
    margin: 0;
    overflow: hidden;
    border: 9px solid var(--bg);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(31,27,20,.16);
}
.about-visual-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-visual-seal {
    position: absolute;
    top: 30px;
    left: 18px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--dark);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.about-visual-seal strong,
.about-visual-seal span {
    display: block;
}
.about-visual-seal strong {
    font-size: 20px;
    letter-spacing: 1px;
}
.about-visual-seal span {
    margin-top: 3px;
    color: #aaa89f;
    font-size: 9px;
    letter-spacing: 1.2px;
}
.about-story-copy > p {
    color: var(--ink-soft);
    line-height: 2.1;
}
.about-capabilities {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}
.about-capabilities > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 13px;
    padding: 15px 16px;
    border: 1px solid rgba(140,101,62,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.55);
}
.about-capabilities span {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--dark);
    color: #d8b58b;
    font-size: 11px;
    font-weight: 800;
}
.about-capabilities strong {
    font-size: 14px;
}
.about-capabilities small {
    color: var(--ink-soft);
    font-size: 11px;
}
.about-story-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.about-phone-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 18px;
    border-right: 1px solid var(--line);
    text-align: right;
}
.about-phone-link small {
    color: var(--ink-soft);
    font-size: 10px;
}
.about-phone-link .phone-number {
    margin-top: 2px;
    color: var(--gold-deep);
    font-size: 18px;
    font-weight: 800;
}

/* About metric panel */
.about-metrics-section {
    padding-top: 40px;
}
.about-metrics-shell {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 45px;
    padding: 48px;
    border-radius: 36px;
    background: var(--dark);
    color: #fff;
    box-shadow: var(--shadow);
}
.about-metrics-intro {
    align-self: center;
}
.about-metrics-intro h2 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: 30px !important;
    line-height: 1.5;
}
.about-metrics-intro p {
    margin: 0;
    color: #aaa89f;
    line-height: 2;
    font-size: 13px;
}
.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.about-metric {
    min-height: 145px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    background: rgba(255,255,255,.045);
}
.about-metric strong {
    display: block;
    color: #d8b58b;
    font-size: 27px;
    line-height: 1.25;
}
.about-metric span {
    display: block;
    margin-top: 13px;
    color: #cbc8bf;
    font-size: 12px;
    line-height: 1.8;
}

/* About values */
.about-values-section {
    padding-top: 75px;
}
.about-values-grid {
    gap: 20px;
}
.about-values-grid .value-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(31,27,20,.055);
}
.about-values-grid .value-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    left: -70px;
    bottom: -75px;
    border-radius: 50%;
    background: rgba(185,144,98,.1);
}
.value-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(140,101,62,.18);
    border-radius: 19px;
    background: rgba(185,144,98,.08);
    color: var(--gold-deep) !important;
}
.value-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about-values-grid .value-card small {
    color: var(--gold-deep);
    font-size: 10px;
    font-weight: 800;
}
.about-values-grid .value-card h3 {
    margin: 8px 0 12px;
}
.about-values-grid .value-card p {
    line-height: 2;
}

@media (max-width: 1000px) {
    .about-hero-layout,
    .about-story-grid,
    .about-metrics-shell {
        grid-template-columns: 1fr;
    }
    .about-hero-layout {
        min-height: auto;
    }
    .about-hero-media {
        min-height: 470px;
    }
    .about-story-grid {
        gap: 45px;
    }
    .about-metrics-shell {
        gap: 30px;
    }
}

@media (max-width: 620px) {
    .section-header {
        gap: 14px;
        margin-bottom: 32px;
    }
    .section-header p {
        padding: 13px 15px;
        border-radius: 14px;
        font-size: 12px;
    }
    .about-page-hero {
        padding-top: 108px;
    }
    .about-hero-layout {
        padding: 18px;
        border-radius: 28px;
    }
    .about-hero-copy {
        padding: 24px 8px 12px;
    }
    .about-hero-copy h1 {
        font-size: 40px !important;
        letter-spacing: -1.7px;
    }
    .about-hero-media {
        min-height: 360px;
        border-radius: 12px 24px 24px 24px;
    }
    .about-hero-card {
        right: 14px;
        left: 14px;
        bottom: 14px;
        padding: 15px;
    }
    .about-story-section {
        padding-top: 55px;
    }
    .about-visual-stack {
        min-height: 470px;
    }
    .about-visual-main {
        inset: 0 35px 55px 0;
    }
    .about-visual-secondary {
        width: 170px;
        height: 210px;
        border-width: 6px;
    }
    .about-visual-seal {
        top: 18px;
        left: 8px;
        padding: 13px;
    }
    .about-story-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .about-story-actions .button {
        width: 100%;
    }
    .about-phone-link {
        padding: 12px 0 0;
        border-right: 0;
        border-top: 1px solid var(--line);
    }
    .about-metrics-shell {
        padding: 26px 18px;
        border-radius: 28px;
    }
    .about-metrics-grid {
        grid-template-columns: 1fr;
    }
    .about-metric {
        min-height: 115px;
    }
}


/* Timbera v1.3.1 — footer cleanup */
.footer-bottom { justify-content: center; text-align: center; }


/* Timbera v1.3.2 — keep compact trust title on one line */
.trust-title-compact {
    display: inline-block;
    white-space: nowrap;
    font-size: 20px !important;
    letter-spacing: -0.35px;
}
@media (max-width: 1100px) {
    .trust-title-compact {
        font-size: 18px !important;
    }
}
@media (max-width: 620px) {
    .trust-title-compact {
        font-size: 16px !important;
    }
}


/* Timbera v1.3.3 — compact selected projects section */
.dark-section.section-space {
    padding-top: 82px;
    padding-bottom: 82px;
}
.dark-section .section-header {
    margin-bottom: 32px;
}
.dark-section .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.dark-section .project-card {
    border-radius: 21px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}
.dark-section .project-image {
    height: 225px;
}
.dark-section .project-content {
    padding: 18px 19px 19px;
}
.dark-section .project-meta {
    gap: 6px;
}
.dark-section .project-meta span {
    padding: 5px 8px;
    font-size: 9px;
}
.dark-section .project-content h3 {
    margin: 12px 0 7px !important;
    font-size: 17px !important;
}
.dark-section .project-content p {
    min-height: 50px;
    font-size: 12px;
    line-height: 1.85;
}
.dark-section .project-footer {
    margin-top: 14px;
    padding-top: 13px;
    gap: 10px;
    font-size: 10px;
}
.dark-section .portfolio-actions {
    margin-top: 28px;
}

@media (max-width: 1100px) {
    .dark-section .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dark-section .project-image {
        height: 245px;
    }
}

@media (max-width: 620px) {
    .dark-section.section-space {
        padding-top: 62px;
        padding-bottom: 62px;
    }
    .dark-section .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .dark-section .project-image {
        height: 220px;
    }
    .dark-section .project-content p {
        min-height: auto;
    }
}

/* Timbera v1.4.0 — balanced typography, responsive layout and informative service pages */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

main,
section,
.container,
.header-inner,
.footer-top,
.grid,
[class*="-grid"] {
    min-width: 0;
}

p,
li,
h1,
h2,
h3,
a,
span {
    overflow-wrap: break-word;
}

/* Balanced title scale across landing, service and future blog pages. */
.display-title,
.hero-title,
.hero h1 {
    font-size: clamp(38px, 4.7vw, 64px) !important;
    line-height: 1.25 !important;
    letter-spacing: -2.1px !important;
}

.page-hero h1,
.about-hero-copy h1,
.blog-hero h1,
.post-hero h1,
.article-header h1,
.single-post h1,
article .entry-title {
    max-width: 790px;
    font-size: clamp(32px, 3.9vw, 50px) !important;
    line-height: 1.38 !important;
    letter-spacing: -1.6px !important;
}

.section-header h2,
.content-title,
.consultation-copy h2,
.service-overview-copy h2,
.service-checklist-intro h2,
.contact-panel h2,
.article-content h2,
.entry-content h2 {
    font-size: clamp(27px, 3vw, 39px) !important;
    line-height: 1.5 !important;
    letter-spacing: -1px !important;
}

.article-content h3,
.entry-content h3,
.service-option-card h3,
.project-content h3,
.service-card h3,
.timeline-card h3 {
    font-size: clamp(17px, 1.6vw, 20px) !important;
    line-height: 1.65 !important;
    letter-spacing: -.25px;
}

.article-content,
.entry-content,
.blog-content {
    max-width: 820px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 2.05;
}

.article-content h2,
.entry-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.article-content h3,
.entry-content h3 {
    margin-top: 34px;
    margin-bottom: 12px;
}

.section-space {
    padding-top: 92px;
    padding-bottom: 92px;
}

.page-hero {
    padding-top: 138px;
    padding-bottom: 56px;
}

.page-hero-inner {
    padding: 46px 48px;
}

.page-hero p {
    max-width: 700px;
    font-size: 15px;
    line-height: 2;
}

.section-header {
    margin-bottom: 38px;
}

.section-header p {
    line-height: 2;
}

/* Five service groups without narrow or oversized cards. */
.services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    min-height: 300px;
}

.service-card-head {
    min-height: 104px;
    padding: 21px 22px 16px;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
}

.service-icon svg {
    width: 33px;
    height: 33px;
}

.service-card-body {
    padding: 22px;
}

.service-card .service-card-body h3 {
    font-size: 18px !important;
}

/* Service overview */
.service-overview {
    padding-top: 74px;
    padding-bottom: 82px;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 62px;
    align-items: center;
}

.service-overview-media {
    position: relative;
    min-height: 535px;
    margin: 0;
    overflow: hidden;
    border-radius: 24px 46px 24px 46px;
    background: #dedbd5;
    box-shadow: 0 24px 70px rgba(31, 27, 20, .12);
}

.service-overview-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, .36));
}

.service-overview-media img {
    width: 100%;
    height: 100%;
    min-height: 535px;
    object-fit: cover;
}

.service-overview-media figcaption {
    position: absolute;
    right: 22px;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    max-width: 520px;
    color: #fff;
    font-size: 12px;
    line-height: 1.9;
}

.service-overview-copy > p {
    margin: 16px 0 0;
    color: var(--ink-soft);
    line-height: 2.15;
}

.service-bullet-list {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.service-bullet-list > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 13px 14px;
    border: 1px solid rgba(140, 101, 62, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .58);
}

.service-bullet-list span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--dark);
    color: #d8b58b;
    font-size: 11px;
    font-weight: 800;
}

.service-bullet-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.9;
}

/* Informative option cards */
.service-options-section {
    padding-top: 82px;
    padding-bottom: 82px;
    background: rgba(236, 232, 224, .72);
}

.service-section-header p {
    padding: 0;
    border: 0;
    background: transparent;
}

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

.service-option-card {
    position: relative;
    min-height: 255px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(140, 101, 62, .15);
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 32px rgba(31, 27, 20, .045);
}

.service-option-card::after {
    content: "";
    position: absolute;
    left: -50px;
    bottom: -58px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: rgba(185, 144, 98, .09);
}

.service-option-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding-inline: 10px;
    border-radius: 11px;
    background: var(--dark);
    color: #d8b58b;
    font-size: 11px;
    font-weight: 800;
}

.service-option-card h3 {
    margin: 42px 0 10px;
}

.service-option-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 2;
}

/* Compact dark checklist between content and project gallery. */
.service-checklist-section {
    padding: 72px 0 28px;
}

.service-checklist-shell {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 46px;
    padding: 43px 46px;
    border-radius: 32px;
    background: var(--dark);
    color: #fff;
    box-shadow: var(--shadow);
}

.service-checklist-intro h2 {
    margin: 12px 0;
    color: #fff;
}

.service-checklist-intro p {
    margin: 0;
    color: #aaa89f;
    font-size: 13px;
    line-height: 2;
}

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

.service-checklist-grid > div {
    min-height: 86px;
    display: grid;
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
}

.service-checklist-grid span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(185, 144, 98, .14);
    color: #d8b58b;
    font-size: 11px;
    font-weight: 800;
}

.service-checklist-grid p {
    margin: 0;
    color: #d0cdc5;
    font-size: 12px;
    line-height: 1.85;
}

.service-projects-section {
    padding-top: 76px;
}

.service-projects-section .projects-grid.project-count-1 {
    grid-template-columns: minmax(0, 620px);
}

.service-projects-section .projects-grid.project-count-1 .project-card {
    width: 100%;
}

.category-links {
    position: relative;
    z-index: 2;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .section-space {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .service-overview-grid,
    .service-checklist-shell {
        grid-template-columns: 1fr;
    }

    .service-overview-grid {
        gap: 38px;
    }

    .service-overview-media,
    .service-overview-media img {
        min-height: 460px;
    }

    .service-checklist-shell {
        gap: 28px;
    }
}

@media (max-width: 760px) {
    .services-grid,
    .service-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero {
        padding-top: 104px;
        padding-bottom: 38px;
    }

    .page-hero-inner {
        padding: 34px 28px;
        border-radius: 26px;
    }

    .category-links {
        margin-right: -4px;
        margin-left: -4px;
        padding: 2px 4px 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .category-links::-webkit-scrollbar {
        display: none;
    }

    .category-links a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .service-checklist-grid {
        grid-template-columns: 1fr;
    }

    .service-projects-section .projects-grid.project-count-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .section-space {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .display-title,
    .hero-title,
    .hero h1 {
        font-size: clamp(34px, 10vw, 42px) !important;
        line-height: 1.35 !important;
        letter-spacing: -1.5px !important;
    }

    .page-hero h1,
    .about-hero-copy h1,
    .blog-hero h1,
    .post-hero h1,
    .article-header h1,
    .single-post h1,
    article .entry-title {
        font-size: clamp(29px, 8vw, 35px) !important;
        line-height: 1.5 !important;
        letter-spacing: -1px !important;
    }

    .section-header h2,
    .content-title,
    .consultation-copy h2,
    .service-overview-copy h2,
    .service-checklist-intro h2,
    .contact-panel h2,
    .article-content h2,
    .entry-content h2 {
        font-size: clamp(24px, 7vw, 29px) !important;
        line-height: 1.6 !important;
        letter-spacing: -.65px !important;
    }

    .lead,
    .page-hero p {
        font-size: 14px;
        line-height: 2;
    }

    .hero {
        padding-top: 96px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .hero-gallery {
        min-height: 405px;
    }

    .hero-image-main {
        inset: 0 0 42px 18px;
    }

    .hero-image-side {
        width: 118px;
        height: 154px;
    }

    .hero-float {
        width: 128px;
        left: 3px;
        padding: 11px;
    }

    .section-header {
        gap: 13px;
        margin-bottom: 29px;
    }

    .section-header p,
    .service-section-header p {
        padding: 0;
        border: 0;
        background: transparent;
        font-size: 13px;
        line-height: 2;
    }

    .services-grid,
    .service-options-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 255px;
    }

    .service-overview {
        padding-top: 46px;
        padding-bottom: 54px;
    }

    .service-overview-grid {
        gap: 30px;
    }

    .service-overview-media,
    .service-overview-media img {
        min-height: 330px;
    }

    .service-overview-media {
        border-radius: 18px 30px 18px 30px;
    }

    .service-overview-media figcaption {
        right: 15px;
        left: 15px;
        bottom: 14px;
        font-size: 11px;
    }

    .service-bullet-list > div {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 11px 12px;
    }

    .service-bullet-list span {
        width: 34px;
        height: 34px;
    }

    .service-options-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .service-option-card {
        min-height: 220px;
        padding: 23px;
    }

    .service-option-card h3 {
        margin-top: 32px;
    }

    .service-checklist-section {
        padding-top: 48px;
        padding-bottom: 10px;
    }

    .service-checklist-shell {
        padding: 28px 18px;
        border-radius: 26px;
    }

    .service-checklist-grid > div {
        min-height: 76px;
    }

    .service-projects-section {
        padding-top: 54px;
    }

    .project-image,
    .dark-section .project-image {
        height: 245px;
    }

    .project-content {
        padding: 20px;
    }

    .contact-panel,
    .consultation-shell {
        padding: 25px 18px;
    }

    .consultation-form {
        padding: 18px 13px;
    }

    .site-header .header-inner {
        min-height: 70px;
        gap: 10px;
    }

    .site-header .brand,
    .site-header .brand-logo {
        width: 148px;
        min-width: 148px;
        max-width: 148px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .main-nav {
        top: 70px;
        right: 12px;
        left: 12px;
        max-height: calc(100dvh - 86px);
    }

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

@media (max-width: 380px) {
    .site-header .brand,
    .site-header .brand-logo {
        width: 132px;
        min-width: 132px;
        max-width: 132px;
    }

    .page-hero-inner {
        padding: 29px 20px;
    }

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

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

/* Timbera v1.4.1 — final density and title-size adjustment */
.display-title,
.hero-title,
.hero h1 {
    font-size: clamp(37px, 4.35vw, 58px) !important;
}

.page-hero h1,
.about-hero-copy h1,
.blog-hero h1,
.post-hero h1,
.article-header h1,
.single-post h1,
article .entry-title {
    font-size: clamp(31px, 3.6vw, 46px) !important;
}

.section-header h2,
.content-title,
.consultation-copy h2,
.service-overview-copy h2,
.service-checklist-intro h2,
.contact-panel h2,
.article-content h2,
.entry-content h2 {
    font-size: clamp(26px, 2.8vw, 36px) !important;
}

@media (min-width: 901px) {
    .hero {
        min-height: 760px;
        padding-top: 122px;
        padding-bottom: 72px;
    }
}

@media (max-width: 620px) {
    .display-title,
    .hero-title,
    .hero h1 {
        font-size: clamp(33px, 9.4vw, 38px) !important;
    }

    .page-hero h1,
    .about-hero-copy h1,
    .blog-hero h1,
    .post-hero h1,
    .article-header h1,
    .single-post h1,
    article .entry-title {
        font-size: clamp(28px, 7.8vw, 33px) !important;
    }

    .section-header h2,
    .content-title,
    .consultation-copy h2,
    .service-overview-copy h2,
    .service-checklist-intro h2,
    .contact-panel h2,
    .article-content h2,
    .entry-content h2 {
        font-size: clamp(23px, 6.6vw, 27px) !important;
    }
}
/* Full-bleed secondary hero image: remove the former white frame. */
.hero-image-side {
    border: 0;
    background: transparent;
}
.hero-image-side img {
    object-fit: cover;
}

/* Timbera v1.4.3 — responsive kitchens gallery */
.kitchen-gallery-grid {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
    align-items: start;
}

.kitchen-gallery-card {
    min-width: 0;
    margin: 0;
}

.kitchen-gallery-button {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #ddd;
    cursor: zoom-in;
    box-shadow: 0 8px 24px rgba(22, 20, 16, .09);
}

.kitchen-gallery-button img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.kitchen-gallery-button:hover img {
    transform: scale(1.04);
}

.kitchen-gallery-view {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    color: #171714;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s;
    backdrop-filter: blur(10px);
}

.kitchen-gallery-button:hover .kitchen-gallery-view,
.kitchen-gallery-button:focus-visible .kitchen-gallery-view {
    opacity: 1;
    transform: translateY(0);
}

.kitchen-gallery-card figcaption {
    margin-top: 11px;
    text-align: center;
}

.kitchen-gallery-order {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--gold);
    border-radius: 11px;
    background: var(--gold);
    color: #171714;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.kitchen-gallery-order:hover,
.kitchen-gallery-order:focus-visible {
    background: #cda675;
    color: #171714;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(185, 144, 98, .24);
}

@media (max-width: 1100px) {
    .kitchen-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .kitchen-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .kitchen-gallery-button {
        border-radius: 13px;
    }
}

@media (max-width: 420px) {
    .kitchen-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .kitchen-gallery-order {
        min-height: 40px;
        padding-inline: 8px;
        font-size: 10px;
    }
}

/* Timbera SEO content system v2.0.0 */
.breadcrumbs {
    background: #f3f0ea;
    border-bottom: 1px solid rgba(23, 23, 20, .08);
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 13px 0;
    list-style: none;
    font-size: 12px;
    color: #6d685f;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "←"; opacity: .45; }
.breadcrumbs a { color: #4d4942; text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }

.home-estimate-strip {
    background: #171714;
    color: #fff;
    padding: 42px 0;
}
.home-estimate-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 40px;
    align-items: center;
}
.home-estimate-grid h2 { margin: 8px 0 10px; font-size: clamp(27px, 3vw, 40px); }
.home-estimate-grid p { margin: 0; max-width: 720px; color: rgba(255,255,255,.7); line-height: 2; }
.home-estimate-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.home-estimate-phone { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #fff; text-decoration: none; }
.home-estimate-phone span { color: rgba(255,255,255,.6); font-size: 11px; }
.home-estimate-phone strong { direction: ltr; font-size: 17px; }

.service-seo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
    gap: 52px;
    align-items: start;
}
.service-seo-main > h2 { margin: 10px 0 18px; font-size: clamp(27px, 3vw, 42px); line-height: 1.45; }
.service-seo-main > p { color: #625e56; line-height: 2.05; font-size: 15px; }
.seo-factor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.seo-factor-grid article { padding: 20px; border: 1px solid rgba(23,23,20,.09); border-radius: 14px; background: #fff; }
.seo-factor-grid h3 { margin: 0 0 8px; font-size: 15px; }
.seo-factor-grid p { margin: 0; color: #747067; font-size: 12px; line-height: 1.9; }
.service-seo-aside { position: sticky; top: 108px; }
.seo-estimate-card { padding: 28px; border-radius: 18px; background: #171714; color: #fff; box-shadow: 0 22px 54px rgba(23,23,20,.15); }
.seo-estimate-card > span { color: var(--gold); font-size: 11px; font-weight: 700; }
.seo-estimate-card h2 { margin: 10px 0; font-size: 25px; line-height: 1.55; }
.seo-estimate-card p { color: rgba(255,255,255,.7); line-height: 1.95; font-size: 13px; }
.seo-estimate-card small { display: block; margin-top: 12px; color: rgba(255,255,255,.48); line-height: 1.8; }
.faq-layout { display: grid; grid-template-columns: minmax(250px, .55fr) minmax(0, 1.45fr); gap: 54px; align-items: start; }
.faq-heading h2 { margin: 9px 0 12px; font-size: clamp(27px, 3vw, 39px); }
.faq-heading p { color: #706b62; line-height: 2; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid rgba(23,23,20,.1); border-radius: 13px; background: #fff; overflow: hidden; }
.faq-list summary { padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 14px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: left; font-size: 19px; color: var(--gold); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 18px; color: #6a665e; line-height: 2; font-size: 13px; }
.service-article-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-article-links a { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 18px; border: 1px solid rgba(23,23,20,.1); border-radius: 13px; background: #fff; color: #27251f; text-decoration: none; font-size: 13px; font-weight: 700; }
.service-article-links a:hover { border-color: var(--gold); transform: translateY(-2px); }
.service-article-links i { color: var(--gold); font-style: normal; font-size: 18px; }

.consultation-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.estimate-intro-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); gap: 50px; align-items: start; }
.estimate-intro-copy h2 { margin: 10px 0 18px; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.45; }
.estimate-intro-copy > p { color: #68645c; line-height: 2.1; }
.estimate-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.estimate-benefits article { padding: 19px; border-radius: 14px; background: #f4f1eb; }
.estimate-benefits strong { font-size: 14px; }
.estimate-benefits p { margin: 8px 0 0; color: #777269; font-size: 12px; line-height: 1.8; }
.estimate-keyword-card { padding: 26px; border-radius: 17px; background: #171714; color: #fff; }
.estimate-keyword-card > span { color: var(--gold); font-size: 11px; font-weight: 700; }
.estimate-keyword-card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.estimate-keyword-card li + li { border-top: 1px solid rgba(255,255,255,.1); }
.estimate-keyword-card a { display: block; padding: 14px 0; color: #fff; text-decoration: none; font-size: 13px; }
.estimate-keyword-card a:hover { color: var(--gold); }
.estimate-steps-section { background: #f3f0ea; }
.estimate-steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.estimate-steps-grid article { padding: 24px; border-radius: 15px; background: #fff; }
.estimate-steps-grid article > span { width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--gold); font-weight: 800; }
.estimate-steps-grid h3 { margin: 16px 0 8px; font-size: 16px; }
.estimate-steps-grid p { margin: 0; color: #746f66; font-size: 12px; line-height: 1.9; }
.estimate-scope-shell { padding: 42px; border-radius: 22px; background: #171714; color: #fff; }
.estimate-scope-shell > div:first-child { max-width: 760px; }
.estimate-scope-shell h2 { margin: 10px 0 28px; font-size: clamp(27px, 3.5vw, 43px); line-height: 1.5; }
.estimate-scope-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.estimate-scope-columns article { padding: 25px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.04); }
.estimate-scope-columns h3 { margin: 0 0 15px; color: var(--gold); }
.estimate-scope-columns ul { margin: 0; padding-right: 18px; color: rgba(255,255,255,.72); line-height: 2.1; font-size: 13px; }

.editorial-hero .page-hero-inner { max-width: 980px; }
.blog-category-links span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 11px; }
.blog-category-links b { color: var(--gold); }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.article-card { overflow: hidden; border: 1px solid rgba(23,23,20,.09); border-radius: 17px; background: #fff; box-shadow: 0 8px 25px rgba(23,23,20,.05); }
.article-card-image { aspect-ratio: 16 / 10; display: block; overflow: hidden; background: #ddd; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.article-card:hover .article-card-image img { transform: scale(1.04); }
.article-card-body { padding: 20px; }
.article-category { display: inline-flex; color: #a87945; font-size: 10px; font-weight: 800; }
.article-card h2, .article-card h3 { margin: 9px 0 10px; font-size: 18px; line-height: 1.65; }
.article-card h2 a, .article-card h3 a { color: #201f1b; text-decoration: none; }
.article-card p { margin: 0; color: #746f66; font-size: 12px; line-height: 1.9; }
.article-card-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 17px; padding-top: 14px; border-top: 1px solid rgba(23,23,20,.08); font-size: 10px; color: #8a857c; }
.article-card-footer a { color: #201f1b; font-weight: 700; text-decoration: none; }
.seo-cta-strip { padding: 44px 0; background: #171714; color: #fff; }
.seo-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.seo-cta-inner span { color: var(--gold); font-size: 11px; }
.seo-cta-inner h2 { margin: 7px 0 0; font-size: clamp(24px, 3vw, 36px); }

.article-hero { padding: 72px 0; background: #171714; color: #fff; }
.article-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: 55px; align-items: center; }
.article-hero-copy h1 { margin: 13px 0 17px; font-size: clamp(34px, 4.7vw, 61px); line-height: 1.35; letter-spacing: -1.5px; }
.article-hero-copy > p { color: rgba(255,255,255,.72); line-height: 2.05; font-size: 15px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: rgba(255,255,255,.5); font-size: 11px; }
.article-hero-image { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 20px; }
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-layout { display: grid; grid-template-columns: 270px minmax(0, 780px); justify-content: center; gap: 54px; padding-top: 72px; padding-bottom: 72px; align-items: start; }
.article-sidebar { position: sticky; top: 105px; display: grid; gap: 16px; }
.article-toc, .article-side-cta { padding: 21px; border: 1px solid rgba(23,23,20,.1); border-radius: 15px; background: #fff; }
.article-toc > strong { font-size: 13px; }
.article-toc ol { margin: 13px 0 0; padding-right: 18px; }
.article-toc li { color: #aaa398; font-size: 11px; line-height: 1.8; }
.article-toc a { color: #605c54; text-decoration: none; }
.article-toc a:hover { color: var(--gold); }
.article-side-cta { background: #171714; color: #fff; }
.article-side-cta > span { color: var(--gold); font-size: 10px; }
.article-side-cta > strong { display: block; margin: 7px 0 15px; font-size: 18px; }
.article-content { min-width: 0; }
.article-content > section { scroll-margin-top: 105px; }
.article-content > section + section { margin-top: 45px; }
.article-content h2 { margin: 0 0 16px; font-size: clamp(25px, 3vw, 34px); line-height: 1.55; }
.article-content p { color: #56524b; line-height: 2.25; font-size: 15px; }
.article-checklist { padding: 28px; border-radius: 17px; background: #f1eee7; }
.article-checklist ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; margin: 0; padding: 0; list-style: none; }
.article-checklist li { position: relative; padding-right: 24px; color: #555149; font-size: 13px; }
.article-checklist li::before { content: "✓"; position: absolute; right: 0; color: var(--gold); font-weight: 800; }
.article-service-link { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 28px; border-radius: 17px; background: #171714; color: #fff; }
.article-service-link span { color: var(--gold); font-size: 10px; }
.article-service-link h2 { margin: 6px 0; font-size: 25px; }
.article-service-link p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; }
.article-faq { padding: 0; }
.article-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.empty-state { padding: 90px 0; text-align: center; }
.empty-state h1 { font-size: 44px; }

@media (max-width: 1100px) {
    .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .estimate-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-layout { grid-template-columns: 230px minmax(0, 1fr); gap: 35px; }
}

@media (max-width: 860px) {
    .home-estimate-grid, .service-seo-layout, .faq-layout, .estimate-intro-grid, .article-hero-grid { grid-template-columns: 1fr; }
    .service-seo-aside, .article-sidebar { position: static; }
    .article-layout { grid-template-columns: 1fr; padding-top: 45px; }
    .article-sidebar { order: 2; }
    .article-content { order: 1; }
    .estimate-benefits { grid-template-columns: 1fr; }
    .seo-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .article-grid, .article-grid-compact, .seo-factor-grid, .service-article-links, .estimate-steps-grid, .estimate-scope-columns, .article-checklist ul { grid-template-columns: 1fr; }
    .article-hero { padding: 48px 0; }
    .article-hero-copy h1 { font-size: clamp(30px, 9vw, 40px); letter-spacing: -.5px; }
    .article-layout { padding-top: 35px; padding-bottom: 45px; }
    .article-content p { font-size: 14px; }
    .article-service-link { align-items: flex-start; flex-direction: column; }
    .estimate-scope-shell { padding: 28px 20px; }
    .home-estimate-strip { padding: 34px 0; }
    .consultation-hero-actions { flex-direction: column; align-items: stretch; }
}
