/* ================================================================
   HABITAT CONSTRUCT SA — Global Stylesheet
   Centralized CSS for all pages
================================================================ */

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================================================================
   SHARED TYPOGRAPHY
================================================================ */
.sec-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.sec-h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #111;
}
.sec-h2-xl { font-size: clamp(2.6rem, 4.5vw, 4rem); }
.accent { color: #b8956a; }

/* ================================================================
   SHARED BUTTONS
================================================================ */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: #111;
    padding: 10px 22px;
    border-radius: 7px;
    transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: #2a2a2a; transform: translateY(-1px); }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    background: #fff;
    padding: 10px 22px;
    border-radius: 7px;
    transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    background: transparent;
    border: 1.5px solid #d8d8d8;
    padding: 9px 20px;
    border-radius: 7px;
    transition: all 0.2s;
}
.btn-outline:hover { background: #f5f5f5; border-color: #bbb; }

.btn-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.btn-circle:hover { background: #333; transform: translateX(3px); }

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    border: 1.5px solid #d5d5d5;
    padding: 13px 32px;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-outline-lg:hover { background: #111; color: #fff; border-color: #111; }

/* Split-header */
.split-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 56px;
}
.split-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 16px;
    padding-top: 36px;
}
.split-right > p { font-size: 0.875rem; color: #666; line-height: 1.75; text-align: right; }

/* Center header */
.center-header { text-align: center; margin-bottom: 48px; }
.center-header .sec-num { display: inline-block; }
.center-header .sec-h2 { margin: 8px 0 10px; }
.center-header > p { font-size: 0.875rem; color: #888; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #efefef;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: #111;
    flex-shrink: 0;
}
.brand img {
    width: auto;
    height: 52px;
    border-radius: 4px;
    object-fit: contain;
}
.nav-menu { display: flex; gap: 26px; align-items: center; }
.nav-menu a { font-size: 0.855rem; font-weight: 500; color: #555; transition: color 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: #111; }
.nav-menu a.active { font-weight: 700; }
.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-nav-ghost {
    font-size: 0.855rem;
    font-weight: 500;
    color: #555;
    padding: 8px 16px;
    border-radius: 7px;
    transition: color 0.2s, background 0.2s;
}
.btn-nav-ghost:hover { color: #111; background: #f5f5f5; }
.btn-nav-fill {
    font-size: 0.855rem;
    font-weight: 600;
    color: #fff;
    background: #111;
    padding: 8px 20px;
    border-radius: 7px;
    transition: background 0.2s;
}
.btn-nav-fill:hover { background: #333; }
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #111;
    padding: 4px;
}

/* ================================================================
   HOMEPAGE HERO
================================================================ */
.hero {
    position: relative;
    background-color: #08080f;
    background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,5,15,0.80) 0%, rgba(5,5,15,0.55) 100%);
    z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-body { flex: 1; }
.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 420px;
    padding: 56px 0 40px;
}
.hero-left { display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 8px; }
.hero-left h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -0.03em;
}
.hero-left h1 .hero-line2 {
    display: block;
    border-bottom: 3px solid #b8956a;
    padding-bottom: 4px;
    width: fit-content;
}
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 40px;
    padding-left: 48px;
    gap: 20px;
}
.hero-right p { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 380px; }
.hero-tags-row { padding: 28px 0 20px; }
.hero-tags-row .container { display: flex; flex-wrap: wrap; gap: 8px; }
.htag {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 6px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.htag:hover { background: rgba(255,255,255,0.18); color: #fff; }
.htag.active { background: #fff; color: #111; border-color: #fff; }
.hero-search { padding: 0 0 44px; }
.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 12px;
    overflow: hidden;
}
.s-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.s-field i { color: rgba(255,255,255,0.45); font-size: 0.85rem; flex-shrink: 0; }
.s-field select {
    background: none;
    border: none;
    outline: none;
    color: rgba(255,255,255,0.82);
    font-family: 'Inter', sans-serif;
    font-size: 0.855rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}
.s-field select option { background: #111; color: #fff; }
.s-submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    margin: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.s-submit:hover { background: #2a2a2a; }

/* ================================================================
   SECTION 01 — POURQUOI NOUS CHOISIR
================================================================ */
.section-why { padding: 100px 0 72px; background: #fff; }
.features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature { text-align: center; }
.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.15rem;
    color: #333;
    transition: background 0.25s, color 0.25s;
}
.feature:hover .feat-icon { background: #111; color: #fff; }
.feature h3 { font-size: 0.9rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.feature p { font-size: 0.8rem; color: #888; line-height: 1.65; }

/* ================================================================
   SECTION 02 — À PROPOS (Homepage)
================================================================ */
.section-about { padding: 0 0 100px; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text .sec-h2 { margin: 10px 0 14px; }
.about-text > p { font-size: 0.875rem; color: #666; margin-bottom: 32px; max-width: 460px; line-height: 1.75; }
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-tile { border-radius: 12px; padding: 26px 24px; }
.stat-tile.stat-light { background: #f6f6f6; border: 1px solid #ebebeb; }
.stat-tile.stat-dark { background: #111; }
.stat-tile h3 { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 7px; }
.stat-tile.stat-light h3 { color: #111; }
.stat-tile.stat-dark h3  { color: #fff; }
.stat-tile p { font-size: 0.8rem; font-weight: 500; }
.stat-tile.stat-light p  { color: #888; }
.stat-tile.stat-dark p   { color: rgba(255,255,255,0.55); }
.about-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    background: #1a1a2e;
}
.about-img-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.about-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    padding: 36px 28px 28px;
}
.about-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 18px; }

/* ================================================================
   SECTION 03 — TROUVEZ VOTRE MAISON IDÉALE
================================================================ */
.section-find { padding: 0 0 100px; background: #fff; }
.find-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.find-top .sec-h2 { margin: 8px 0 8px; }
.find-sub { font-size: 0.875rem; color: #777; }
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.find-col-main { display: flex; flex-direction: column; gap: 16px; }
.find-col-main > p { font-size: 0.855rem; color: #555; line-height: 1.78; }
.find-img { position: relative; border-radius: 12px; overflow: hidden; }
.find-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.find-img:hover img { transform: scale(1.04); }
.find-img-tall { height: 280px; }
.find-img-half { height: 175px; }
.find-col-side { display: flex; flex-direction: column; gap: 16px; }
.img-overlay-label {
    position: absolute;
    bottom: 14px; left: 14px; right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.img-overlay-label span { font-size: 0.875rem; font-weight: 600; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.img-arrow-sm {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: #fff;
    transition: background 0.2s;
}
.img-arrow-sm:hover { background: rgba(255,255,255,0.3); }

/* ================================================================
   SECTION 04 — NOS MEILLEURES RÉALISATIONS / PICKS
================================================================ */
.section-picks { padding: 100px 0; background: #f8f8f8; }
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pick-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.3s, transform 0.3s;
}
.pick-card:hover { box-shadow: 0 14px 42px rgba(0,0,0,0.1); transform: translateY(-4px); }
.pick-card.pick-wide { grid-column: span 2; }
.pick-img-wrap { position: relative; height: 195px; overflow: hidden; }
.pick-card.pick-wide .pick-img-wrap { height: 210px; }
.pick-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.pick-card:hover .pick-img-wrap img { transform: scale(1.04); }
.fav-btn {
    position: absolute; top: 12px; right: 12px;
    width: 33px; height: 33px;
    border-radius: 50%;
    background: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: #bbb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: color 0.2s;
}
.fav-btn:hover { color: #e53e3e; }
.pick-body { padding: 18px 20px; }
.pick-body h4 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 3px; }
.pick-body > p { font-size: 0.78rem; color: #999; margin-bottom: 12px; }
.pick-meta { display: flex; gap: 14px; margin-bottom: 14px; }
.pick-meta span { font-size: 0.75rem; color: #999; display: flex; align-items: center; gap: 5px; }
.pick-meta i { font-size: 0.7rem; }
.pick-foot { display: flex; align-items: center; justify-content: space-between; }
.pick-foot strong { font-size: 1rem; font-weight: 800; color: #111; }
.pick-detail-btn {
    font-size: 0.78rem; font-weight: 600;
    color: #fff; background: #111;
    padding: 7px 14px; border-radius: 6px;
    transition: background 0.2s;
}
.pick-detail-btn:hover { background: #333; }
.picks-view-all { text-align: center; margin-top: 44px; }

/* ================================================================
   SECTION 05 — TÉMOIGNAGES
================================================================ */
.section-testimonials { padding: 100px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
    background: #f8f8f8;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 28px 26px;
    display: flex; flex-direction: column; gap: 22px;
}
.testi-card > p { font-size: 0.82rem; color: #555; line-height: 1.78; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 38px; height: 38px;
    border-radius: 50%; background: #111; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.testi-info { flex: 1; }
.testi-info strong { display: block; font-size: 0.85rem; font-weight: 700; color: #111; }
.testi-info span { font-size: 0.75rem; color: #999; }
.testi-quote {
    width: 32px; height: 32px; border-radius: 50%;
    background: #111; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900; line-height: 1; flex-shrink: 0;
}

/* ================================================================
   SECTION 06 — FAQ
================================================================ */
.section-faq { padding: 100px 0; background: #f8f8f8; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.faq-left .sec-h2 { margin: 8px 0 18px; }
.faq-left p { font-size: 0.875rem; color: #666; line-height: 1.75; margin-bottom: 14px; }
.faq-list { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid #ebebeb; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 20px 24px;
    cursor: pointer; user-select: none; transition: background 0.2s;
}
.faq-q:hover { background: #fafafa; }
.faq-q > span { font-size: 0.875rem; font-weight: 600; color: #111; line-height: 1.45; }
.faq-q > i { font-size: 0.8rem; color: #999; flex-shrink: 0; transition: transform 0.28s ease; }
.faq-item.open .faq-q > i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.875rem; color: #666; line-height: 1.75; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #0d0d0d; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-top-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; padding: 60px 0;
}
.footer-cta h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 800; color: #fff;
    letter-spacing: -0.025em; margin-bottom: 24px;
    line-height: 1.15; max-width: 400px;
}
.footer-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.f-socials { display: flex; gap: 10px; }
.f-socials a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.09); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; transition: background 0.2s;
}
.f-socials a:hover { background: rgba(255,255,255,0.2); }
.footer-phone { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-newsletter h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.nl-form { display: flex; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; overflow: hidden; }
.nl-form input {
    flex: 1; background: rgba(255,255,255,0.05); border: none; outline: none;
    padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 0.855rem; color: #fff;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.nl-form button {
    background: #fff; color: #111; border: none;
    padding: 12px 22px; font-family: 'Inter', sans-serif;
    font-size: 0.855rem; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.nl-form button:hover { background: #e8e8e8; }
.footer-mid { border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 48px 0; }
.f-col h4 {
    font-size: 0.78rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.f-col ul { display: flex; flex-direction: column; gap: 11px; }
.f-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.f-col ul li a:hover { color: #fff; }
.f-col ul li.contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.f-col ul li.contact-item i {
    font-size: 0.72rem; color: rgba(255,255,255,0.35);
    margin-top: 3px; flex-shrink: 0;
}
.footer-bar-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 22px 0;
}
.footer-bar-inner p { font-size: 0.79rem; color: rgba(255,255,255,0.3); }
.footer-bar-inner p a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bar-inner p a:hover { color: #fff; }
.bar-socials { display: flex; gap: 16px; }
.bar-socials a { font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.bar-socials a:hover { color: #fff; }

/* ================================================================
   INNER PAGE BANNER
================================================================ */
.page-banner {
    background: #0f0f0f;
    padding: 72px 0 60px;
    border-bottom: 1px solid #1e1e1e;
}
.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.page-banner .breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.page-banner .breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb i { font-size: 0.6rem; }
.page-banner h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 14px;
}
.page-banner h1 .accent { color: #b8956a; }
.page-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.58);
    max-width: 560px;
    line-height: 1.75;
}

/* ================================================================
   INNER PAGE SECTIONS
================================================================ */
.page-section { padding: 80px 0; background: #fff; }
.page-section.bg-light { background: #f8f8f8; }
.page-section.bg-dark { background: #0f0f0f; }
.page-section .sec-h2 { margin-bottom: 12px; }
.page-section .section-intro {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 48px;
}

/* ================================================================
   TEAM CARDS (À Propos)
================================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.08); transform: translateY(-3px); }
.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%; background: #111; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800;
    margin: 0 auto 20px;
    letter-spacing: -0.02em;
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; font-weight: 600; color: #b8956a; margin-bottom: 14px; }
.team-card p { font-size: 0.82rem; color: #777; line-height: 1.7; }

/* ================================================================
   VALUES GRID (À Propos)
================================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 28px 24px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.value-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-2px); }
.value-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #111; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 16px;
}
.value-card h3 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.value-card p { font-size: 0.82rem; color: #777; line-height: 1.65; }

/* ================================================================
   PROSE — Rich text blocks (History etc.)
================================================================ */
.prose { max-width: 740px; }
.prose p {
    font-size: 0.925rem;
    color: #555;
    line-height: 1.82;
    margin-bottom: 20px;
}
.prose p:last-child { margin-bottom: 0; }

/* Two-column content layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-block h2 { margin-bottom: 10px; }
.contact-info-block > p { font-size: 0.875rem; color: #666; margin-bottom: 36px; line-height: 1.75; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    border-left: 3px solid #b8956a;
    margin-bottom: 14px;
    transition: background 0.2s, transform 0.2s;
}
.contact-info-item:hover { background: #f3f0eb; transform: translateX(4px); }
.contact-info-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: #111; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.85rem; font-weight: 700; color: #111; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.82rem; color: #666; line-height: 1.55; }
.contact-form-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 800; color: #111; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #333; margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #111;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b8956a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184,149,106,0.1);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 13px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.btn-submit:hover { background: #2a2a2a; transform: translateY(-1px); }

/* ================================================================
   REVIEWS / AVIS CLIENTS
================================================================ */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #111;
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 48px;
}
.rating-big { text-align: center; }
.rating-big .score {
    font-size: 4rem; font-weight: 900; color: #fff;
    line-height: 1; letter-spacing: -0.04em; margin-bottom: 8px;
}
.rating-stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 6px; }
.rating-count { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.rating-bars { flex: 1; }
.rating-bar-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.rating-bar-row span { font-size: 0.78rem; color: rgba(255,255,255,0.6); width: 40px; flex-shrink: 0; }
.rating-bar-track {
    flex: 1; height: 6px; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden;
}
.rating-bar-fill { height: 100%; background: #b8956a; border-radius: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    background: #f8f8f8;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 28px 24px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.review-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #111; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.review-card-header h4 { font-size: 0.9rem; font-weight: 700; color: #111; margin-bottom: 2px; }
.review-card-header span { font-size: 0.75rem; color: #b8956a; font-weight: 500; }
.review-stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 12px; }
.review-card > p { font-size: 0.82rem; color: #555; line-height: 1.75; font-style: italic; }
.review-project-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    font-weight: 600;
    color: #888;
    background: #ebebeb;
    padding: 4px 10px;
    border-radius: 100px;
    margin-top: 14px;
}

/* ================================================================
   BLOG
================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; background: #c8c8c8; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px 22px 24px; }
.blog-meta { font-size: 0.73rem; font-weight: 600; color: #b8956a; letter-spacing: 0.03em; margin-bottom: 10px; text-transform: uppercase; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: #111; line-height: 1.38; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.8rem; color: #777; line-height: 1.68; margin-bottom: 16px; }
.blog-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 600; color: #111;
    transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ================================================================
   CONSTRUCTIONS GALLERY
================================================================ */
.constructions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.construction-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.construction-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-4px); }
.construction-img { height: 220px; overflow: hidden; background: #c0c8d4; position: relative; }
.construction-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.construction-card:hover .construction-img img { transform: scale(1.05); }
.construction-badge {
    position: absolute; top: 12px; left: 12px;
    font-size: 0.7rem; font-weight: 700;
    color: #fff; background: #111;
    padding: 4px 10px; border-radius: 100px;
}
.construction-body { padding: 20px; }
.construction-body h3 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 4px; }
.construction-body .location { font-size: 0.78rem; color: #b8956a; font-weight: 500; margin-bottom: 10px; }
.construction-body p { font-size: 0.8rem; color: #777; line-height: 1.6; margin-bottom: 14px; }
.construction-foot { display: flex; align-items: center; justify-content: space-between; }
.construction-foot span { font-size: 0.75rem; color: #999; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1060px) {
    .features-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .picks-grid { grid-template-columns: repeat(2, 1fr); }
    .pick-card.pick-wide { grid-column: span 1; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .constructions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container { padding: 0 20px; }
    .nav-menu, .btn-nav-ghost { display: none; }
    .nav-hamburger { display: block; }
    .hero-grid { grid-template-columns: 1fr; min-height: unset; padding: 52px 0 28px; }
    .hero-right { display: none; }
    .search-box { flex-direction: column; border-radius: 12px; }
    .s-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
    .s-field:last-of-type { border-bottom: none; }
    .s-submit { margin: 8px; border-radius: 8px; text-align: center; }
    .split-header { grid-template-columns: 1fr; margin-bottom: 40px; }
    .split-right { align-items: flex-start; padding-top: 0; }
    .split-right > p { text-align: left; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .find-top { flex-direction: column; }
    .find-grid { grid-template-columns: 1fr; }
    .picks-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top-grid { grid-template-columns: 1fr; padding: 44px 0; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-bar-inner { flex-direction: column; text-align: center; }
    .page-banner { padding: 52px 0 44px; }
    .two-col, .two-col-3-2 { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .constructions-grid { grid-template-columns: 1fr; }
    .rating-summary { flex-direction: column; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 540px) {
    .features-row { grid-template-columns: 1fr; }
    .stats-2x2 { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-actions { flex-direction: column; align-items: flex-start; }
    .values-grid { grid-template-columns: 1fr; }
}
