@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');
*,
*::before,
*::after { box-sizing: border-box; }

:root {
    --primary: #0d3b35;
    --primary-dark: #082b27;
    --accent: #c77942;
    --accent-2: #e2b17a;
    --text: #17221f;
    --muted: #67736f;
    --border: #e5e1d8;
    --soft: #f6f1e8;
    --soft-2: #fbf8f2;
    --white: #fff;
    --black: #050907;
    --shadow: 0 28px 70px rgba(13, 59, 53, .14);
    --shadow-sm: 0 14px 34px rgba(13, 59, 53, .08);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1240px;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.62;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--primary);
}
.skip-link:focus { left: 10px; }

.site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(13, 59, 53, .08);
}

.topbar {
    color: rgba(255, 255, 255, .92);
    background: var(--primary-dark);
    font-weight: 800;
    font-size: 13px;
}
.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.topbar-links {
    display: flex;
    align-items: center;
    gap: 22px;
}
.topbar a:hover { color: var(--accent-2); }

.main-header { background: #fff; }
.header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.brand img {
    width: auto;
    max-width: 255px;
    max-height: 70px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-left: auto;
}
.nav-item { position: relative; }
.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 94px;
    color: #1d2926;
    font-weight: 900;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}
.chevron { font-size: 18px; line-height: 1; }

.dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    width: 260px;
    padding: 12px;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: .2s ease;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown a {
    min-height: auto;
    display: flex;
    padding: 11px 12px;
    border: 0;
    border-radius: 10px;
    color: #24302d;
    font-size: 14px;
}
.dropdown a:hover {
    color: #fff;
    background: var(--primary);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 11px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    border-radius: 999px;
    background: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #b96531);
    box-shadow: 0 18px 34px rgba(199, 121, 66, .28);
}
.btn-primary:hover { box-shadow: 0 22px 42px rgba(199, 121, 66, .36); }
.btn-secondary { color: #fff; background: var(--primary); }
.btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.72);
    background: rgba(255,255,255,.08);
}
.btn-outline-dark {
    color: var(--primary);
    border: 1px solid var(--border);
    background: #fff;
}
.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.08);
}
.btn-whatsapp {
    color: #fff;
    background: #16a34a;
}
.btn-large {
    min-height: 56px;
    padding: 16px 26px;
    border-radius: 14px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: currentColor;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(5,9,7,.94) 0%, rgba(7,25,22,.92) 42%, rgba(13,59,53,.74) 70%, rgba(13,59,53,.46) 100%),
        var(--hero-bg, url('../img/hero-construction.svg')) center/cover;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0%, transparent 42%, rgba(199,121,66,.16) 42.3%, rgba(199,121,66,.04) 62%, transparent 62.4%),
        radial-gradient(circle at 78% 26%, rgba(226,177,122,.3), transparent 30%);
    pointer-events: none;
}
.hero-slider { position: relative; }
.hero-slide { display: none; position: relative; z-index: 2; }
.hero-slide.active { display: block; }
.hero-inner {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .86fr);
    gap: 56px;
    align-items: center;
    padding: 82px 0 110px;
}
.hero-copy { max-width: 720px; }
.hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 7vw, 92px);
    line-height: .95;
    letter-spacing: -0.045em;
}
.hero p {
    max-width: 650px;
    margin: 24px 0 32px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 44px;
    max-width: 640px;
}
.hero-metric {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}
.hero-metric strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}
.hero-metric span {
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 800;
}
.hero-panel {
    justify-self: end;
    width: min(100%, 420px);
    padding: 28px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    color: var(--text);
    box-shadow: 0 32px 70px rgba(0,0,0,.28);
}
.hero-panel h2 {
    margin: 0 0 8px;
    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.1;
    text-align: center;
}
.hero-panel p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
    display: block;
    margin-bottom: 6px;
    color: #24302d;
    font-size: 12px;
    font-weight: 900;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    color: #1b2925;
    background: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(199, 121, 66, .12);
}
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    z-index: 5;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}
.hero-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}
.hero-dots button.active {
    width: 34px;
    background: var(--accent);
}

.section { padding: 86px 0; }
.section-soft { background: var(--soft-2); }
.section-dark {
    color: #fff;
    background: var(--primary-dark);
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}
.section-heading.center { display: block; text-align: center; }
.section-heading.center p { margin-inline: auto; }
.section-heading h2 {
    margin: 0;
    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.035em;
}
.section-dark .section-heading h2 { color: #fff; }
.section-heading p {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
}
.section-dark .section-heading p { color: rgba(255,255,255,.75); }

.about-grid {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 54px;
    align-items: center;
}
.about-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .74fr;
    gap: 16px;
}
.about-media img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.about-media .stack {
    display: grid;
    gap: 16px;
}
.about-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 142px;
    height: 142px;
    border: 8px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    box-shadow: var(--shadow);
    text-align: center;
}
.about-badge strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}
.lead {
    margin: 18px 0;
    color: #3c4c48;
    font-size: 18px;
}
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
    margin: 28px 0;
}
.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #26342f;
    font-weight: 900;
}
.check-item::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}
.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(199,121,66,.42);
    box-shadow: var(--shadow);
}
.service-card .media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--soft);
}
.service-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.service-card:hover .media img { transform: scale(1.04); }
.service-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}
.icon-wrap {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 14px;
    color: var(--accent);
    background: rgba(199,121,66,.11);
    border: 1px solid rgba(199,121,66,.22);
}
.icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}
.service-card h3 {
    margin: 18px 0 10px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.16;
}
.service-card p { margin: 0 0 18px; color: var(--muted); }
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--accent);
    font-weight: 1000;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}
.project-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: 24px;
    color: #fff;
    box-shadow: var(--shadow-sm);
    background: var(--primary);
}
.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(5,9,7,.86) 100%);
}
.project-card-body {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px;
}
.project-card .tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 99px;
    color: #fff;
    background: rgba(199,121,66,.92);
    font-size: 12px;
    font-weight: 1000;
}
.project-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.08;
}
.project-card p { margin: 0 0 14px; color: rgba(255,255,255,.78); }

.process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.process-step {
    position: relative;
    padding: 28px;
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}
.process-step .no {
    display: block;
    margin-bottom: 24px;
    color: rgba(226,177,122,.75);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 1;
}
.process-step h3 { margin: 0 0 10px; font-size: 22px; }
.process-step p { margin: 0; color: rgba(255,255,255,.72); }

.stats-band {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8,43,39,.96), rgba(13,59,53,.92)),
        url('../img/pattern.svg') center/cover;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
    padding: 30px 0;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 120px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.07);
}
.stat-card strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1;
    color: var(--accent-2);
}
.stat-card span { color: rgba(255,255,255,.76); font-weight: 900; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}
.testimonial-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.testimonial-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}
.avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-weight: 1000;
}
.testimonial-card h3 { margin: 0; color: var(--primary); font-size: 17px; }
.stars { color: #f5a524; letter-spacing: 2px; }
.testimonial-card p { margin: 0 0 14px; color: #30413c; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}
.blog-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-body { padding: 24px; }
.blog-card time {
    color: var(--accent);
    font-size: 13px;
    font-weight: 1000;
}
.blog-card h3 {
    margin: 8px 0 10px;
    color: var(--primary);
    font-size: 23px;
    line-height: 1.18;
}
.blog-card p { color: var(--muted); }

.split-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(340px,.85fr);
    gap: 28px;
    align-items: start;
}
.card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.card-pad { padding: 28px; }

.faq-list {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 18px 22px;
    color: var(--primary);
    background: #fff;
    text-align: left;
    font-weight: 1000;
    cursor: pointer;
}
.faq-question span:last-child { color: var(--accent); font-size: 22px; }
.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: #344540;
}
.faq-item.open .faq-answer { display: block; }

.contact-card {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8,43,39,.98), rgba(13,59,53,.93)),
        url('../img/pattern.svg') center/cover;
}
.contact-list,
.footer-contact,
.footer-links {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.contact-list li,
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.contact-list svg,
.footer-contact svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    fill: currentColor;
    color: var(--accent-2);
}
.map-frame iframe,
.map-frame img {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 22px;
    object-fit: cover;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(100deg, rgba(5,9,7,.92), rgba(13,59,53,.82)),
        var(--page-bg, url('../img/page-hero.svg')) center/cover;
}
.page-hero-inner { padding: 88px 0; }
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255,255,255,.78);
    font-weight: 900;
}
.breadcrumb a:hover { color: #fff; }
.page-hero h1 {
    max-width: 900px;
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -0.04em;
}
.page-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 32px;
    align-items: start;
}
.content-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.content-card h2,
.content-card h3 {
    color: var(--primary);
    letter-spacing: -0.02em;
}
.content-card h2 {
    margin-top: 0;
    font-size: 36px;
    line-height: 1.12;
}
.content-card p,
.content-card li { color: #344540; }
.content-card img.main-img,
.page-feature-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 0 26px;
}
.sidebar {
    position: sticky;
    top: 130px;
    display: grid;
    gap: 18px;
}
.sidebar-box {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.sidebar-box h3 { margin: 0 0 16px; color: var(--primary); }
.sidebar-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #26342f;
    background: var(--soft-2);
    font-weight: 900;
}
.sidebar-links a:hover {
    color: #fff;
    background: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    margin-top: 28px;
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / .78;
    object-fit: cover;
    border-radius: 16px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.filter-tabs a {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 99px;
    color: #26342f;
    background: #fff;
    font-weight: 900;
}
.filter-tabs a.active,
.filter-tabs a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 900;
}
.alert-success { color: #166534; background: #dcfce7; }
.alert-error { color: #991b1b; background: #fee2e2; }

.footer-cta {
    color: #fff;
    background:
        linear-gradient(100deg, rgba(8,43,39,.98), rgba(13,59,53,.88)),
        url('../img/cta-bg.svg') center/cover;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 58px 0;
}
.footer-cta h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
}
.footer-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.75);
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.site-footer {
    color: rgba(255,255,255,.82);
    background: #050907;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .9fr 1fr;
    gap: 36px;
    padding: 56px 0 40px;
}
.footer-logo {
    width: auto;
    max-width: 255px;
    max-height: 76px;
    margin-bottom: 18px;
}
.footer-grid h3 {
    margin: 0 0 16px;
    color: #fff;
}
.footer-about p { max-width: 360px; color: rgba(255,255,255,.66); }
.footer-links a { color: rgba(255,255,255,.74); }
.footer-links a:hover,
.footer-contact a:hover { color: var(--accent-2); }
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.1);
    font-size: 12px;
    font-weight: 1000;
}
.social-links a:hover { background: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
}
.footer-bottom a:hover { color: #fff; }

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    display: grid;
    gap: 10px;
}
.floating-actions a {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #16a34a;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    font-weight: 1000;
}
.floating-actions a:last-child { background: var(--accent); }

@media (max-width: 1160px) {
    .header-cta { display: none; }
    .main-nav { gap: 18px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-panel { justify-self: start; width: min(100%, 760px); }
    .about-grid, .split-grid, .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .project-grid, .service-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .process, .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 920px) {
    .container { width: min(100% - 28px, var(--container)); }
    .topbar-inner { justify-content: center; text-align: center; }
    .topbar-links { display: none; }
    .header-inner { min-height: 78px; }
    .brand img { max-width: 230px; max-height: 62px; }
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        inset: 116px 14px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow);
        max-height: calc(100vh - 136px);
        overflow: auto;
    }
    .main-nav.open { display: flex; }
    .nav-item { width: 100%; }
    .main-nav a {
        min-height: 46px;
        width: 100%;
        padding: 10px 12px;
        border: 0;
        border-radius: 12px;
    }
    .main-nav a:hover,
    .main-nav a.active { color: #fff; background: var(--primary); }
    .dropdown {
        position: static;
        width: 100%;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        margin: 4px 0 8px;
        border-radius: 14px;
        background: var(--soft-2);
    }
    .has-dropdown:hover .dropdown,
    .has-dropdown.open .dropdown { display: grid; transform: none; }
    .hero,
    .hero-inner { min-height: auto; }
    .hero-inner { padding: 58px 0 92px; gap: 28px; }
    .hero h1 { font-size: clamp(42px, 12vw, 68px); }
    .hero-metrics { grid-template-columns: 1fr; }
    .about-media,
    .check-grid,
    .form-grid,
    .footer-grid,
    .footer-cta-inner {
        grid-template-columns: 1fr;
    }
    .footer-cta-inner { display: grid; }
    .cta-actions { justify-content: flex-start; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
    .section { padding: 58px 0; }
    .brand img { max-width: min(218px, calc(100vw - 90px)); }
    .main-nav { inset-top: 116px; }
    .hero-panel { padding: 20px; border-radius: 20px; }
    .hero-panel h2 { font-size: 24px; }
    .hero-actions, .cta-actions { flex-direction: column; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
    .project-grid, .service-grid, .blog-grid, .process, .stats-grid, .testimonial-grid, .gallery-grid { grid-template-columns: 1fr; }
    .project-card { min-height: 330px; }
    .content-card { padding: 22px; }
    .about-badge { width: 118px; height: 118px; font-size: 13px; }
    .footer-bottom-inner { flex-direction: column; }
    .floating-actions { right: 12px; bottom: 12px; }
    .floating-actions a { width: 50px; height: 50px; }
}

.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .12) !important;
}


/* =========================================================
   MWP İNŞAAT - Ekran görüntüsüne uygun koyu/sarı kurumsal tasarım
   Bu bölüm frontend tasarımını günceller; admin paneli ve upload görsellerini etkilemez.
   ========================================================= */

:root {
    --mwp-black: #080909;
    --mwp-black-2: #111313;
    --mwp-panel: #161717;
    --mwp-gold: #b98b4f;
    --mwp-gold-2: #d6b575;
    --mwp-gold-dark: #8f6734;
    --mwp-text: #1e1e1e;
    --mwp-muted: #6e6a62;
    --mwp-border: #e7e2d8;
    --mwp-white: #ffffff;
    --mwp-serif: Georgia, "Times New Roman", serif;
    --mwp-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --container: 1280px;
}

body {
    background: #ffffff;
    color: var(--mwp-text);
}

.mwp-header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 8, 8, .96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.mwp-header .main-header {
    background: transparent;
}

.mwp-header .header-inner {
    min-height: 86px;
    gap: 28px;
}

.mwp-brand img,
.mwp-footer-logo img {
    width: auto;
    max-width: 172px;
    max-height: 62px;
    object-fit: contain;
}

.mwp-nav {
    margin-left: auto;
    gap: 34px;
}

.mwp-nav .nav-item {
    display: flex;
    align-items: center;
}

.mwp-nav a {
    min-height: 86px;
    color: rgba(255,255,255,.88);
    border-bottom: 2px solid transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mwp-nav a:hover,
.mwp-nav a.active {
    color: var(--mwp-gold-2);
    border-bottom-color: var(--mwp-gold-2);
}

.mwp-nav .dropdown {
    top: calc(100% - 4px);
    background: #141515;
    border-color: rgba(214,181,117,.22);
    border-radius: 0;
    box-shadow: 0 28px 60px rgba(0,0,0,.35);
}

.mwp-nav .dropdown a {
    min-height: auto;
    color: rgba(255,255,255,.84);
    border-radius: 0;
    letter-spacing: .04em;
}

.mwp-nav .dropdown a:hover {
    background: var(--mwp-gold);
    color: #111;
}

.mwp-header .menu-toggle {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}

.mwp-header .menu-toggle span {
    background: #fff;
}

.mwp-phone-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--mwp-gold), #936939);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    white-space: nowrap;
}

.mwp-phone-box svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.mwp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--mwp-gold-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mwp-eyebrow::before {
    content: "";
    width: 52px;
    height: 2px;
    background: currentColor;
}

.mwp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: .22s ease;
}

.mwp-btn:hover {
    transform: translateY(-1px);
}

.mwp-btn-gold {
    color: #fff;
    background: linear-gradient(135deg, var(--mwp-gold-2), var(--mwp-gold));
    box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

.mwp-btn-line {
    color: #fff;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.04);
}

.mwp-btn-darkline {
    color: #fff;
    border-color: rgba(214,181,117,.48);
    background: transparent;
}

.mwp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #151515;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mwp-text-link:hover {
    color: var(--mwp-gold);
}

.mwp-hero {
    position: relative;
    min-height: 642px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(3,4,4,.98) 0%, rgba(5,6,6,.95) 34%, rgba(5,6,6,.58) 58%, rgba(5,6,6,.12) 100%),
        var(--hero-bg) center/cover no-repeat;
}

.mwp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0,0,0,.86) 0 37%, rgba(185,139,79,.12) 37.2% 38%, rgba(9,9,9,.20) 38.2% 100%),
        radial-gradient(circle at 38% 82%, rgba(214,181,117,.42), transparent 16%);
    pointer-events: none;
}

.mwp-hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}

.mwp-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 642px;
    display: flex;
    align-items: center;
}

.mwp-hero-copy {
    width: min(720px, 62%);
    padding: 70px 0 92px;
}

.mwp-hero h1 {
    margin: 0;
    font-family: var(--mwp-serif);
    font-size: clamp(54px, 6.5vw, 82px);
    line-height: .96;
    letter-spacing: -.045em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 18px 42px rgba(0,0,0,.35);
}

.mwp-hero h1 span {
    display: block;
    color: var(--mwp-gold-2);
}

.mwp-hero p {
    max-width: 560px;
    margin: 26px 0 36px;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
}

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

.mwp-hero-tags {
    position: absolute;
    right: 22px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mwp-hero-tags b {
    color: var(--mwp-gold-2);
    font-weight: 900;
}

.mwp-section-title span,
.mwp-process-heading {
    display: block;
    margin-bottom: 10px;
    color: var(--mwp-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.mwp-section-title h2 {
    margin: 0;
    color: #151515;
    font-family: var(--mwp-serif);
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 500;
}

.mwp-section-title.compact h2 {
    max-width: 330px;
}

.mwp-section-title a {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 34px;
    color: #111;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mwp-service-strip {
    background: #fff;
    border-bottom: 1px solid var(--mwp-border);
}

.mwp-service-strip-inner {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
    padding: 34px 0;
}

.mwp-service-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mwp-mini-service {
    min-height: 164px;
    padding: 26px 18px 20px;
    border: 1px solid var(--mwp-border);
    background: #fff;
    text-align: center;
    transition: .22s ease;
}

.mwp-mini-service:hover {
    transform: translateY(-4px);
    border-color: rgba(185,139,79,.55);
    box-shadow: 0 18px 38px rgba(0,0,0,.07);
}

.mwp-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    color: var(--mwp-gold);
}

.mwp-icon svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.mwp-mini-service h3 {
    margin: 0 0 9px;
    color: #141414;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.3;
}

.mwp-mini-service p {
    margin: 0;
    color: var(--mwp-muted);
    font-size: 12px;
    line-height: 1.55;
}

.mwp-about-dark {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(9,10,10,.98), rgba(20,20,20,.95)),
        url('../img/pattern.svg') center/cover;
}

.mwp-about-dark-inner {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(0, .78fr) 270px;
    gap: 44px;
    align-items: center;
    padding: 74px 0;
}

.mwp-about-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(214,181,117,.22);
}

.mwp-about-copy h2 {
    margin: 0 0 22px;
    font-family: var(--mwp-serif);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.05;
    font-weight: 500;
    text-transform: uppercase;
}

.mwp-about-copy p {
    margin: 0 0 30px;
    color: rgba(255,255,255,.75);
    line-height: 1.78;
}

.mwp-about-stats {
    display: grid;
    gap: 26px;
    padding-left: 36px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.mwp-about-stats div {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: center;
}

.mwp-about-stats svg {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    fill: var(--mwp-gold-2);
}

.mwp-about-stats strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.mwp-about-stats span {
    color: rgba(255,255,255,.70);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.mwp-project-showcase {
    padding: 64px 0 66px;
    background: #fff;
}

.mwp-section-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
}

.mwp-project-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.mwp-project-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    background: #111;
}

.mwp-project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .3s ease;
}

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

.mwp-project-card::after {
    content: "";
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.95));
}

.mwp-project-card a {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: grid;
    gap: 3px;
    padding: 18px 18px 16px;
    color: #fff;
}

.mwp-project-card strong {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.mwp-project-card span {
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.mwp-project-card i {
    position: absolute;
    right: 17px;
    bottom: 22px;
    color: var(--mwp-gold-2);
    font-style: normal;
    font-size: 20px;
}

.mwp-stats-band {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(9,10,10,.98), rgba(17,18,18,.96)),
        url('../img/pattern.svg') center/cover;
}

.mwp-stats-band-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 33px 0;
}

.mwp-stats-band-inner div {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    column-gap: 16px;
    padding: 0 34px;
    border-right: 1px solid rgba(255,255,255,.16);
}

.mwp-stats-band-inner div:last-child {
    border-right: 0;
}

.mwp-stats-band svg {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    fill: var(--mwp-gold-2);
}

.mwp-stats-band strong {
    display: block;
    color: var(--mwp-gold-2);
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1;
    font-weight: 500;
    font-family: var(--mwp-serif);
}

.mwp-stats-band span {
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mwp-values {
    padding: 54px 0;
    background: #fff;
}

.mwp-values-inner {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

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

.mwp-value {
    text-align: center;
}

.mwp-value svg {
    width: 42px;
    height: 42px;
    fill: var(--mwp-gold);
    margin: 0 auto 14px;
}

.mwp-value h3 {
    margin: 0 0 8px;
    color: #191919;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.mwp-value p {
    margin: 0;
    color: var(--mwp-muted);
    font-size: 12px;
    line-height: 1.6;
}

.mwp-process {
    position: relative;
    overflow: hidden;
    padding: 56px 0 64px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8,9,9,.98), rgba(21,22,22,.96)),
        url('../img/pattern.svg') center/cover;
}

.mwp-process::after {
    content: "";
    position: absolute;
    right: 40px;
    bottom: -40px;
    width: 280px;
    height: 280px;
    opacity: .16;
    background: url('../img/page-hero.svg') center/contain no-repeat;
}

.mwp-process-line {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    margin-top: 26px;
}

.mwp-process-line::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 22px;
    height: 1px;
    border-top: 1px dashed rgba(214,181,117,.48);
}

.mwp-process-step {
    position: relative;
    text-align: center;
    padding-top: 0;
}

.mwp-process-step b {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 22px;
    color: #111;
    background: var(--mwp-gold-2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.mwp-process-step h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.mwp-process-step p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.65;
}

.mwp-testimonials {
    padding: 52px 0;
    background: #fff;
}

.mwp-testimonials-inner {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.mwp-testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.mwp-testimonial {
    position: relative;
    padding: 26px 20px;
    border-left: 1px solid var(--mwp-border);
}

.mwp-testimonial::before {
    content: "“";
    position: absolute;
    left: 18px;
    top: -2px;
    color: var(--mwp-gold);
    font-family: var(--mwp-serif);
    font-size: 54px;
    line-height: 1;
}

.mwp-testimonial p {
    margin: 12px 0 22px;
    color: #55514b;
    font-size: 14px;
    line-height: 1.7;
}

.mwp-testimonial div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center;
}

.mwp-testimonial img {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.mwp-testimonial strong {
    color: #222;
    font-size: 14px;
}

.mwp-testimonial span {
    color: var(--mwp-muted);
    font-size: 12px;
}

.mwp-contact-home {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8,9,9,.97) 0%, rgba(15,16,16,.95) 56%, rgba(15,16,16,.70) 100%),
        url('../img/cta-bg.svg') right center/cover no-repeat;
}

.mwp-contact-home-inner {
    position: relative;
    display: grid;
    grid-template-columns: 285px minmax(0, 530px) minmax(260px, 1fr);
    gap: 30px;
    align-items: center;
    min-height: 280px;
    padding: 54px 0;
}

.mwp-contact-info h2 {
    margin: 0 0 18px;
    font-family: var(--mwp-serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: .96;
    font-weight: 500;
    text-transform: uppercase;
}

.mwp-contact-info p {
    color: rgba(255,255,255,.72);
    margin: 0 0 24px;
}

.mwp-contact-info ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mwp-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.86);
    font-size: 13px;
}

.mwp-contact-info svg {
    width: 20px;
    height: 20px;
    fill: var(--mwp-gold-2);
    flex: 0 0 auto;
}

.mwp-home-form .form-grid {
    gap: 14px;
}

.mwp-home-form .field label {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.mwp-home-form input,
.mwp-home-form select,
.mwp-home-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 0;
    color: #fff;
    background: rgba(0,0,0,.22);
    outline: none;
}

.mwp-home-form textarea {
    min-height: 92px;
}

.mwp-home-form input::placeholder,
.mwp-home-form textarea::placeholder {
    color: rgba(255,255,255,.64);
}

.mwp-home-form select {
    color: rgba(255,255,255,.82);
}

.mwp-contact-visual {
    align-self: stretch;
    overflow: hidden;
    opacity: .78;
}

.mwp-contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
}

.mwp-footer {
    color: #fff;
    background: #080909;
    border-top: 1px solid rgba(255,255,255,.08);
}

.mwp-footer-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
}

.mwp-footer-nav {
    display: flex;
    justify-content: center;
    gap: 38px;
}

.mwp-footer-nav a {
    color: rgba(255,255,255,.82);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mwp-footer-nav a:hover {
    color: var(--mwp-gold-2);
}

.mwp-footer-social {
    display: flex;
    gap: 14px;
}

.mwp-footer-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    font-weight: 900;
}

.mwp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.mwp-footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    color: rgba(255,255,255,.54);
    font-size: 12px;
}

.mwp-footer-bottom a:hover {
    color: var(--mwp-gold-2);
}

.floating-actions {
    display: none;
}

@media (max-width: 1180px) {
    .mwp-nav {
        gap: 20px;
    }

    .mwp-phone-box {
        padding: 0 16px;
    }

    .mwp-service-strip-inner,
    .mwp-values-inner,
    .mwp-testimonials-inner {
        grid-template-columns: 1fr;
    }

    .mwp-section-title.compact h2 {
        max-width: none;
    }

    .mwp-service-cards,
    .mwp-project-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mwp-about-dark-inner,
    .mwp-contact-home-inner {
        grid-template-columns: 1fr;
    }

    .mwp-about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-left: 0;
        padding-left: 0;
    }

    .mwp-contact-visual {
        display: none;
    }
}

@media (max-width: 920px) {
    .mwp-header .header-inner {
        min-height: 76px;
    }

    .mwp-brand img {
        max-width: 145px;
        max-height: 56px;
    }

    .mwp-phone-box {
        display: none;
    }

    .mwp-nav {
        position: absolute;
        inset: 76px 14px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: #101111;
        border: 1px solid rgba(214,181,117,.18);
    }

    .mwp-nav.open {
        display: flex;
    }

    .mwp-nav a {
        min-height: 44px;
        padding: 11px 14px;
        border-bottom: 0;
    }

    .mwp-nav .dropdown {
        position: static;
        width: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin: 4px 0 10px;
    }

    .mwp-nav .has-dropdown.open .dropdown {
        display: block;
    }

    .mwp-hero,
    .mwp-hero-inner {
        min-height: 560px;
    }

    .mwp-hero-copy {
        width: 100%;
    }

    .mwp-hero h1 {
        font-size: clamp(42px, 10vw, 62px);
    }

    .mwp-hero-tags {
        left: 20px;
        right: auto;
    }

    .mwp-service-cards,
    .mwp-project-cards,
    .mwp-stats-band-inner,
    .mwp-value-grid,
    .mwp-process-line,
    .mwp-testimonial-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mwp-process-line::before {
        display: none;
    }

    .mwp-footer-inner {
        grid-template-columns: 1fr;
        padding: 26px 0;
        text-align: center;
    }

    .mwp-footer-logo img {
        margin: 0 auto;
    }

    .mwp-footer-nav,
    .mwp-footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mwp-footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

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

    .mwp-hero {
        min-height: 520px;
        background-position: center right;
    }

    .mwp-hero-inner {
        min-height: 520px;
    }

    .mwp-hero-copy {
        padding: 54px 0 92px;
    }

    .mwp-hero h1 {
        font-size: 39px;
    }

    .mwp-hero p {
        font-size: 14px;
    }

    .mwp-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mwp-hero-tags {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 11px;
    }

    .mwp-service-cards,
    .mwp-project-cards,
    .mwp-stats-band-inner,
    .mwp-value-grid,
    .mwp-process-line,
    .mwp-testimonial-cards,
    .mwp-about-stats {
        grid-template-columns: 1fr;
    }

    .mwp-stats-band-inner div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding: 18px 0;
    }

    .mwp-stats-band-inner div:last-child {
        border-bottom: 0;
    }

    .mwp-section-row {
        display: block;
    }

    .mwp-text-link {
        margin-top: 18px;
    }

    .mwp-contact-home-inner {
        padding: 44px 0;
    }

    .mwp-home-form .form-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MWP İNŞAAT - Ana sayfa slide/hero tipografi düzeltmesi
   Daha küçük, daha klas ve mimarlık diline uygun başlık düzeni.
   ========================================================= */

:root {
    --mwp-serif: "Cormorant Garamond", "Baskerville", "Baskerville Old Face", "Libre Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --mwp-sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.mwp-hero {
    min-height: 600px;
}

.mwp-hero::before {
    background:
        linear-gradient(105deg, rgba(0,0,0,.86) 0 36%, rgba(185,139,79,.10) 36.2% 37.2%, rgba(9,9,9,.16) 37.4% 100%),
        radial-gradient(circle at 36% 82%, rgba(214,181,117,.30), transparent 15%);
}

.mwp-hero-inner {
    min-height: 600px;
}

.mwp-hero-copy {
    width: min(620px, 56%);
    padding: 62px 0 82px;
}

.mwp-hero .mwp-eyebrow {
    margin-bottom: 18px;
    font-family: var(--mwp-sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
}

.mwp-hero .mwp-eyebrow::before {
    width: 44px;
}

.mwp-hero h1 {
    max-width: 650px;
    margin: 0;
    font-family: var(--mwp-serif);
    font-size: clamp(38px, 4.25vw, 62px) !important;
    line-height: 1.08;
    letter-spacing: -.012em;
    font-weight: 600;
    text-transform: none !important;
    text-shadow: 0 14px 34px rgba(0,0,0,.44);
    font-variant-ligatures: common-ligatures;
    text-wrap: balance;
}

.mwp-hero h1 span {
    color: var(--mwp-gold-2);
    font-weight: 600;
}

.mwp-hero p {
    max-width: 500px;
    margin: 22px 0 30px;
    color: rgba(255,255,255,.84);
    font-family: var(--mwp-sans);
    font-size: 15.5px;
    line-height: 1.78;
    font-weight: 500;
}

.mwp-hero-actions {
    gap: 14px;
}

.mwp-hero .mwp-btn {
    min-height: 48px;
    padding: 0 24px;
    font-family: var(--mwp-sans);
    font-size: 11px;
    letter-spacing: .075em;
}

/* Eski hero sınıfı kullanılırsa aynı tipografi burada da geçerli olur. */
.hero h1 {
    font-family: var(--mwp-serif);
    font-size: clamp(38px, 4.35vw, 62px);
    line-height: 1.08;
    letter-spacing: -.012em;
    font-weight: 600;
    text-transform: none;
}

.hero p {
    font-family: var(--mwp-sans);
}

@media (min-width: 1280px) {
    .mwp-hero h1 {
        font-size: 60px !important;
    }

    .mwp-hero-copy {
        width: 600px;
    }
}

@media (max-width: 1100px) {
    .mwp-hero,
    .mwp-hero-inner {
        min-height: 560px;
    }

    .mwp-hero-copy {
        width: min(600px, 70%);
        padding: 58px 0 78px;
    }

    .mwp-hero h1 {
        font-size: clamp(36px, 6vw, 54px) !important;
    }

    .mwp-hero p {
        max-width: 520px;
        font-size: 15px;
    }
}

@media (max-width: 880px) {
    .mwp-hero,
    .mwp-hero-inner {
        min-height: 540px;
    }

    .mwp-hero-copy {
        width: 100%;
        max-width: 620px;
        padding: 54px 0 82px;
    }

    .mwp-hero h1 {
        font-size: clamp(34px, 7.5vw, 46px) !important;
        line-height: 1.1;
    }

    .mwp-hero p {
        max-width: 560px;
        margin-top: 18px;
    }
}

@media (max-width: 620px) {
    .mwp-hero,
    .mwp-hero-inner {
        min-height: 500px;
    }

    .mwp-hero-copy {
        padding: 46px 0 86px;
    }

    .mwp-hero .mwp-eyebrow {
        margin-bottom: 14px;
        font-size: 10.5px;
        letter-spacing: .14em;
    }

    .mwp-hero .mwp-eyebrow::before {
        width: 30px;
    }

    .mwp-hero h1 {
        font-size: 34px !important;
        line-height: 1.12;
        letter-spacing: -.006em;
    }

    .mwp-hero p {
        margin: 16px 0 24px;
        font-size: 14px;
        line-height: 1.72;
    }

    .mwp-hero .mwp-btn {
        min-height: 46px;
        font-size: 10.5px;
    }
}

@media (max-width: 390px) {
    .mwp-hero h1 {
        font-size: 31px !important;
    }
}
