﻿:root {
    --bg-dark: #4c4c4c;
    --bg-dark-2: #3f3f3f;
    --bg-beige: #e7e1d6;
    --bg-white: #ffffff;
    --brown: #b47a63;
    --brown-2: #caa089;
    --text: #2c2c2c;
    --muted: #7a7a7a;
    --muted-light: #d8d8d8;
    --border: #d8cfc2;
    --shadow: 0 12px 26px rgba(0,0,0,.14);
    --shadow-soft: 0 10px 18px rgba(0,0,0,.08);
    --container: 1100px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg-white);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    width: min(var(--container), calc(100% - 56px));
    margin-inline: auto;
}

/* ===== Top bar ===== */
.topbar {
    background: #5a5a5a;
    color: #f2f2f2;
    font-size: 12px;
    line-height: 1;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 18px;
}

.topbar__group {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.topbar__item {
    opacity: .95;
}

    .topbar__item:hover {
        opacity: 1;
        text-decoration: underline;
    }

.topbar__sep {
    opacity: .7;
}

/* ===== Header ===== */
.header {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.brand__strong {
    font-weight: 900;
    letter-spacing: .4px;
    font-size: 16px;
}

.brand__muted {
    font-weight: 700;
    font-size: 14px;
    color: #6b6b6b;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #404040;
}

.nav__link {
    position: relative;
    padding: 2px 0;
    opacity: .95;
}

    .nav__link:hover {
        opacity: 1;
    }

    .nav__link.is-active {
        color: var(--brown);
        font-weight: 800;
    }

        .nav__link.is-active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            background: var(--brown);
            border-radius: 2px;
        }

.nav__toggle {
    display: none;
    width: 44px;
    height: 38px;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 8px;
    background: #fff;
    padding: 0 10px;
    cursor: pointer;
}

    .nav__toggle span {
        display: block;
        height: 2px;
        background: #333;
        margin: 5px 0;
        border-radius: 2px;
    }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
    user-select: none;
    white-space: nowrap;
}

    .btn:active {
        transform: translateY(1px);
    }

.btn--primary {
    background: var(--brown);
    color: #fff;
    box-shadow: 0 10px 18px rgba(180,122,99,.22);
}

    .btn--primary:hover {
        box-shadow: 0 14px 24px rgba(180,122,99,.28);
    }

.btn--ghost {
    background: #fff;
    color: #2f2f2f;
    border-color: #fff;
}

    .btn--ghost:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 22px rgba(0,0,0,.16);
    }

.btn--ghostOnBrown {
    background: #fff;
    color: #3a3a3a;
    border-color: #fff;
    padding: 12px 22px;
}

/* ===== Hero (Home) ===== */
.hero {
    background: #5f5f5f;
    padding: 58px 0 44px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 44px;
}

.hero__media {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #2e2e2e;
}

    .hero__media img {
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 2.5;
        object-fit: cover;
    }

.hero__content {
    text-align: right;
    color: #efefef;
}

.hero__title {
    margin: 0 0 14px;
    font-size: 56px;
    line-height: 1.02;
    font-weight: 900;
}

.hero__titleTop {
    display: block;
    color: #fff;
}

.hero__titleAccent {
    display: block;
    color: var(--brown);
}

.hero__lead {
    margin: 0 0 22px;
    max-width: 520px;
    color: #e6e6e6;
    font-size: 14px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.stars {
    color: var(--brown-2);
    font-size: 14px;
    letter-spacing: 2px;
}

.hero__ratingText {
    font-size: 12px;
    color: #dedede;
}

/* ===== Page hero (Services/Portfolio/About/Blog/Contact) ===== */
.page-hero {
    background: #5f5f5f;
    color: #fff;
    padding: 64px 0 70px;
    text-align: center;
}

.page-hero__title {
    margin: 0 0 10px;
    font-size: 46px;
    font-weight: 900;
}

.page-hero__subtitle {
    margin: 0 auto;
    max-width: 860px;
    font-size: 14px;
    line-height: 1.9;
    color: #e9e9e9;
}

/* ===== Sections ===== */
.section {
    padding: 54px 0;
}

.section--white {
    background: #fff;
}

.section--dark {
    background: var(--bg-dark);
    color: #fff;
}

.section--beige {
    background: var(--bg-beige);
}

.section__title {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    color: #3a3a3a;
}

.section--dark .section__title {
    color: #fff;
}

.section__subtitle {
    margin: 0 auto 34px;
    max-width: 820px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    line-height: 1.8;
}

.section--dark .section__subtitle {
    color: var(--muted-light);
}

.section__cta {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

/* ===== Stats ===== */
.stats {
    background: var(--bg-beige);
    padding: 26px 0;
}

.stats__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat__value {
    color: var(--brown);
    font-weight: 900;
    font-size: 28px;
}

.stat__label {
    margin-top: 6px;
    font-size: 12px;
    color: #6a6a6a;
}

/* ===== Cards (Services blocks used across pages) ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 18px;
}

.card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 10px;
    padding: 26px 22px 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    min-height: 190px;
}

.card__icon {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brown);
    background: #d7cbbf;
}

.card__title {
    margin: 18px 0 10px;
    font-size: 18px;
    font-weight: 900;
    text-align: right;
    color: #2f2f2f;
}

.card__text {
    margin: 0;
    font-size: 13px;
    color: #707070;
    line-height: 1.75;
    text-align: right;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--brown);
    font-weight: 700;
}

    .card__link:hover {
        text-decoration: underline;
    }

/* Services (detailed) – bullets inside cards */
.card__bullets {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #6f6f6f;
    font-size: 13px;
}

    .card__bullets li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .card__bullets li::before {
            content: "•";
            color: var(--brown);
            font-weight: 900;
            line-height: 1;
            margin-top: 2px;
        }

/* ===== Why choose (Home) ===== */
.why {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 34px;
    align-items: start;
}

.why__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why__item {
    color: #efefef;
    font-size: 14px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .why__item::before {
        content: "◦";
        color: var(--brown-2);
        font-size: 20px;
        line-height: 1;
        margin-top: -2px;
    }

/* ===== Testimonials (Home) ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 18px;
}

.tcard {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    padding: 22px 18px 18px;
    border: 1px solid rgba(0,0,0,.05);
    text-align: center;
}

.tcard__stars {
    color: var(--brown-2);
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}

.tcard__text {
    margin: 0;
    font-size: 13px;
    color: #6f6f6f;
    line-height: 1.75;
    min-height: 70px;
}

.tcard__name {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 900;
    color: #4d4d4d;
}

/* ===== CTA band ===== */
.cta {
    background: var(--brown);
    padding: 56px 0;
    color: #fff;
}

.cta__inner {
    text-align: center;
}

.cta__title {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 900;
}

.cta__subtitle {
    margin: 0 auto 18px;
    max-width: 820px;
    font-size: 13px;
    opacity: .92;
    line-height: 1.8;
}

/* ===== Process block (Services page) ===== */
.process {
    background: var(--bg-beige);
    padding: 56px 0;
}

.process__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 36px;
}

.process__media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #2e2e2e;
}

    .process__media img {
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 2.7;
        object-fit: cover;
    }

.process__title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 900;
    color: #3a3a3a;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
}

.step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brown);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-top: 2px;
}

.step__title {
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    color: #3a3a3a;
}

.step__text {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: #6f6f6f;
}

/* ===== Portfolio ===== */
.filters {
    background: var(--bg-beige);
    padding: 24px 0;
}

.filters__inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    border: 0;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 999px;
    background: #d9d2c6;
    color: #5a5a5a;
    font-size: 13px;
    font-weight: 800;
}

    .pill.is-active {
        background: var(--brown);
        color: #fff;
    }

.portfolio {
    background: var(--bg-beige);
    padding: 28px 0 56px;
}

.grid-portfolio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.pcard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,.05);
}

.pcard__img {
    height: 170px;
    background: #2e2e2e;
}

    .pcard__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.pcard__body {
    padding: 16px 16px 14px;
}

.pcard__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: #3a3a3a;
}

.pcard__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #7a7a7a;
}

.pcard__metaItem {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== About ===== */
.about-block {
    background: #fff;
    padding: 46px 0;
}

.about-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-block__title {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 900;
    color: #3a3a3a;
    text-align: right;
}

.about-block__text {
    margin: 0;
    color: #6f6f6f;
    line-height: 2;
    font-size: 13px;
}

/* Values cards (About) */
.values {
    background: var(--bg-beige);
    padding: 56px 0;
}

.values__title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    color: #3a3a3a;
}

.values__subtitle {
    margin: 0 auto 34px;
    max-width: 720px;
    text-align: center;
    color: #7a7a7a;
    font-size: 13px;
    line-height: 1.8;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vcard {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,.05);
    padding: 20px 16px 18px;
    text-align: center;
}

.vcard__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d9d2c6;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 900;
}

.vcard__title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 900;
}

.vcard__text {
    margin: 0;
    font-size: 13px;
    color: #6f6f6f;
    line-height: 1.8;
}

/* About stats strip (brown) */
.stats--brown {
    background: var(--brown);
    color: #fff;
}

    .stats--brown .stat__value {
        color: #fff;
    }

    .stats--brown .stat__label {
        color: #f2f2f2;
        opacity: .9;
    }

/* ===== Blog ===== */
.blog {
    background: var(--bg-beige);
    padding: 34px 0 56px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.bcard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,.05);
}

.bcard__img {
    height: 170px;
    background: #2e2e2e;
    position: relative;
}

    .bcard__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.bcard__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brown);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
}

.bcard__body {
    padding: 16px 16px 12px;
    text-align: center;
}

.bcard__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: #3a3a3a;
}

.bcard__excerpt {
    margin: 0 auto 14px;
    font-size: 13px;
    line-height: 1.8;
    color: #6f6f6f;
    max-width: 320px;
}

.bcard__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #7a7a7a;
    font-size: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.bcard__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--brown);
    font-weight: 900;
    font-size: 13px;
    margin-top: 10px;
}

    .bcard__cta:hover {
        text-decoration: underline;
    }

.newsletter {
    background: var(--bg-beige);
    padding: 56px 0 70px;
}

.newsletter__box {
    background: var(--brown);
    border-radius: 14px;
    color: #fff;
    padding: 42px 26px;
    box-shadow: var(--shadow);
}

.newsletter__title {
    margin: 0 0 10px;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
}

.newsletter__subtitle {
    margin: 0 auto 22px;
    text-align: center;
    max-width: 720px;
    font-size: 13px;
    line-height: 1.8;
    opacity: .92;
}

.newsletter__form {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.input {
    height: 44px;
    min-width: 320px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.35);
    background: #fff;
    color: #333;
    padding: 0 14px;
    font-size: 13px;
}

.btn--dark {
    background: #3a3a3a;
    color: #fff;
    border-color: #3a3a3a;
    padding: 12px 22px;
}

/* ===== Blog post page ===== */
.post {
    background: #fff;
    padding: 46px 0 60px;
}

.post__inner {
    width: min(880px, calc(100% - 56px));
    margin-inline: auto;
}

.post__title {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 900;
    color: #3a3a3a;
    text-align: right;
}

.post__meta {
    color: #7a7a7a;
    font-size: 12px;
    margin-bottom: 20px;
}

.post__hero {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 14px 0 22px;
}

    .post__hero img {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

.post__content {
    color: #5f5f5f;
    font-size: 14px;
    line-height: 2;
}

/* ===== Contact ===== */
.contact {
    background: #fff;
    padding: 46px 0 70px;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 26px;
    align-items: start;
}

.panel {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.panel__title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 900;
    color: #3a3a3a;
    text-align: right;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: grid;
    grid-template-columns: 1fr 46px;
    gap: 16px;
    align-items: center;
}

.contact-item__label {
    font-weight: 900;
    font-size: 13px;
    color: #3a3a3a;
    margin-bottom: 4px;
}

.contact-item__value {
    color: #6f6f6f;
    font-size: 13px;
    line-height: 1.6;
}

.contact-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #d9d2c6;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field label {
    display: block;
    font-size: 12px;
    color: #5f5f5f;
    margin-bottom: 6px;
}

.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 8px;
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
    outline: none;
}

.field textarea {
    height: 140px;
    padding: 12px 14px;
    resize: vertical;
}

.form__actions {
    margin-top: 6px;
}

.btn--wide {
    width: 100%;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark-2);
    color: #f0f0f0;
    padding: 44px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.25fr;
    gap: 34px;
    align-items: start;
    padding-bottom: 30px;
}

.footer__title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
}

.footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #d6d6d6;
}

    .footer__list a:hover {
        text-decoration: underline;
    }

.footer__text {
    margin: 0;
    font-size: 13px;
    color: #d6d6d6;
    line-height: 1.9;
}

.footer__social {
    margin-top: 14px;
    font-size: 13px;
    color: #d6d6d6;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 14px 0;
}

.footer__bottomInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #cfcfcf;
    opacity: .9;
}

/* ===== Responsive ===== */
@media (max-width: 1040px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__rating {
        align-items: center;
    }

    .process__inner {
        grid-template-columns: 1fr;
    }

    .about-block__inner {
        grid-template-columns: 1fr;
    }

    .values__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .why {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .grid-portfolio {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 86vw);
        background: #ffffff;
        box-shadow: -18px 0 40px rgba(0,0,0,.18);
        padding: 90px 18px 18px;
        transform: translateX(110%);
        transition: transform .18s ease;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        z-index: 50;
    }

    body.nav-open .nav {
        transform: translateX(0%);
    }

    .nav__toggle {
        display: inline-block;
        z-index: 60;
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 70;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(var(--container), calc(100% - 34px));
    }

    .hero {
        padding: 34px 0 30px;
    }

    .hero__title {
        font-size: 38px;
    }

    .stats__inner {
        gap: 16px;
    }

    .stat__value {
        font-size: 22px;
    }

    .section__title {
        font-size: 24px;
    }

    .cta__title {
        font-size: 26px;
    }

    .page-hero__title {
        font-size: 36px;
    }

    .input {
        min-width: 240px;
    }

    .post__hero img {
        height: 240px;
    }
}

/* =========================
   BLOG – INDEX
========================= */

.blog-index {
    background: #e6e0d2;
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.blog-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

    .blog-card a {
        color: inherit;
        text-decoration: none;
        display: block;
    }

.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .blog-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-card__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #b67a58;
    color: #fff;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 20px;
}

.blog-card__content {
    padding: 24px;
}

    .blog-card__content h2 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #2f2f2f;
    }

    .blog-card__content p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .blog-card__content time {
        display: block;
        font-size: 13px;
        color: #999;
        margin-bottom: 12px;
    }

.blog-card__read-more {
    font-weight: 600;
    color: #b67a58;
}


/* =========================
   BLOG – POST
========================= */

.blog-post {
  background: #ffffff;
  padding: 80px 0;
}

.blog-post .content-narrow {
  max-width: 820px;
}

.blog-post h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.blog-post-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
}

.blog-post img {
  width: 100%;
  border-radius: 8px;
  margin: 40px 0;
}

.blog-post p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.blog-post h2 {
  font-size: 26px;
  margin: 50px 0 20px;
}

