:root {
    --rose: #f8eeee;
    --rose-strong: #d99a96;
    --ink: #161113;
    --muted: #8f7d7e;
    --line: #eadada;
    --paper: #fffdfc;
    --shadow: 0 18px 45px rgba(99, 69, 70, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
}

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

.topbar {
    min-height: 96px;
    padding: 14px max(24px, 19vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: rgba(253, 243, 242, .93);
    border-bottom: 1px solid rgba(230, 210, 210, .7);
}

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

.brand strong,
.footer-brand h2 {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #7e5f61;
}

.brand small,
.footer-brand small {
    display: block;
    margin-top: 5px;
    color: #b39b9c;
    font-size: 11px;
    text-transform: uppercase;
}

.logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(123, 83, 84, .12);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 12px;
    line-height: .9;
    text-align: center;
    color: #513b3e;
}

.logo b {
    color: #c65d66;
}

.top-actions,
.hero-buttons,
.contact-grid {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-actions {
    color: #7b6d6e;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-actions a,
.hero-buttons a,
.contact-grid a,
.copyright a {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .82);
    border-radius: 999px;
    min-height: 35px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(98, 70, 72, .07);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.top-actions a:hover,
.contact-grid a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(98, 70, 72, .14);
}

.top-actions .primary {
    background: linear-gradient(180deg, #e2aaa7, #c98583);
    color: #fff;
    border-color: transparent;
}

.pin::before {
    content: "○";
    margin-right: 8px;
    color: #d0a6a6;
}

.hero {
    min-height: 555px;
    display: grid;
    place-items: center;
    position: relative;
    background-color: #f5eeee;
    background-position: center 18%;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12);
}

.hero-overlay {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    width: min(920px, 92vw);
}

.hero h1,
.section-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 10px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 58px);
    color: #120f10;
    text-shadow:
        0 2px 0 rgba(255, 255, 255, .55),
        0 8px 22px rgba(255, 255, 255, .9),
        0 18px 38px rgba(0, 0, 0, .24);
}

.hero p {
    margin: 18px 0 32px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-style: italic;
}

.hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons a {
    min-height: 52px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-buttons a:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 36px rgba(30, 20, 22, .22);
}

.hero-buttons span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #050505;
    display: inline-block;
    transition: transform .2s ease, background .2s ease;
}

.hero-buttons a:hover span {
    transform: scale(.82);
    background: var(--rose-strong);
}

.blog-section {
    padding: 130px 24px 140px;
}

.section-heading {
    text-align: center;
    width: min(560px, 100%);
    margin: 0 auto 65px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 9px;
}

.section-heading em {
    display: block;
    margin: 22px 0 14px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
    color: #c9b4b5;
}

.section-heading p {
    margin: 0;
    color: #75696a;
    line-height: 1.7;
}

.post-grid {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.post-card {
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(99, 69, 70, .16);
}

.post-card img,
.post-placeholder {
    width: 100%;
    height: 178px;
    object-fit: cover;
    background: linear-gradient(180deg, #fff, #f9f4f4);
}

.post-body {
    padding: 28px 24px;
}

.post-body h3 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    line-height: 1.18;
}

.post-body p {
    margin: 0;
    color: #726668;
    line-height: 1.75;
}

.read-more {
    margin-top: 22px;
    display: inline-flex;
    color: #b77d7a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer {
    padding: 70px 24px 44px;
    background: linear-gradient(180deg, #fff7f7, #fff1f1);
    border-top: 1px solid var(--line);
    color: #927879;
}

.footer-inner {
    width: min(760px, 100%);
    margin: 0 auto 58px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 78px;
    align-items: start;
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo {
    margin: 0 auto 26px;
}

.footer-brand h2 {
    margin: 0;
    font-size: 30px;
}

.footer-brand p {
    margin: 20px 0 0;
    line-height: 1.6;
}

.contact h3 {
    margin: 4px 0 34px;
    text-align: center;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #8e6d6f;
}

.contact h3::after {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    margin: 16px auto 0;
    background: #d7aaa9;
}

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

.contact-grid a {
    min-height: 38px;
    font-size: 12px;
}

.copyright {
    width: min(760px, 100%);
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(220, 197, 197, .7);
    text-align: center;
    color: #b19c9d;
}

.copyright p {
    margin: 0 0 10px;
}

.copyright a {
    margin-top: 22px;
    min-height: 34px;
    font-size: 12px;
}

.post-page {
    padding: 0 24px 110px;
}

.article-hero {
    width: min(1120px, 100%);
    min-height: 460px;
    margin: 44px auto 64px;
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-radius: 8px;
    background: #f7eeee;
    box-shadow: var(--shadow);
}

.article-hero.no-image {
    background: linear-gradient(135deg, #fff7f7, #f2dddd);
}

.article-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(35,25,26,.62));
}

.article-hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    padding: 48px;
    color: #fff;
}

.article-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.article-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    font-weight: 600;
}

.article-hero p {
    margin: 22px 0 0;
    width: min(620px, 100%);
    font-size: 17px;
    line-height: 1.75;
}

.article-layout {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 54px;
    align-items: start;
}

.post-article {
    color: #4f4546;
}

.post-article h1 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    font-weight: 600;
}

.lead {
    margin: 0 0 34px;
    color: #8c7a7b;
    font-size: 17px;
    line-height: 1.8;
}

.post-content {
    font-size: 16px;
    line-height: 1.9;
    padding: 38px;
    background: #fff;
    border: 1px solid #f0e3e3;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(99, 69, 70, .08);
}

.article-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.back-link {
    min-height: 42px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--rose-strong);
    color: #fff;
    font-weight: 700;
}

.back-link.light {
    background: #fff;
    color: #9c7373;
    border: 1px solid var(--line);
}

.related-posts {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffafa;
    position: sticky;
    top: 24px;
}

.related-posts h2 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
}

.related-posts a {
    display: block;
    padding: 18px 0;
    border-top: 1px solid #f0dfdf;
}

.related-posts strong,
.related-posts span {
    display: block;
}

.related-posts strong {
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
}

.related-posts span {
    color: #79696a;
    font-size: 13px;
    line-height: 1.6;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #17d567;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 12px 26px rgba(20, 180, 92, .35);
}

@media (max-width: 980px) {
    .topbar {
        padding: 14px 22px;
    }

    .post-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .topbar,
    .brand,
    .top-actions,
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-actions {
        justify-content: center;
    }

    .hero {
        min-height: 520px;
    }

    .hero h1,
    .section-heading h2 {
        letter-spacing: 4px;
    }

    .hero-buttons a {
        width: min(280px, 100%);
    }

    .blog-section {
        padding: 86px 18px;
    }

    .footer-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .article-hero {
        min-height: 420px;
        margin-top: 24px;
    }

    .article-hero-content,
    .post-content {
        padding: 28px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .related-posts {
        position: static;
    }
}
