/* Intro quote paragraph */
.buying-intro-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.75;
    color: #2c2c2c;
    border-left: 4px solid #c19b76;
    padding-left: 16px;
    margin-bottom: 20px;
}

/* Content boxes - light bg with left accent border */
.buying-content-box {
    background: #fdf9f5;
    border: 1px solid #f0ebe4;
    border-left: 4px solid #c19b76;
    border-radius: 0 10px 10px 0;
    padding: 20px;
    height: 100%;
}

/* Step boxes - no outer border */
.buying-step-box {
    background: #fdf9f5;
    border-left: 4px solid #c19b76;
    border-radius: 0 10px 10px 0;
    padding: 24px;
    height: 100%;
}

/* Image wrappers */
.buying-img-wrap {
    overflow: hidden;
    border-radius: 10px;
    min-height: 280px;
    height: 100%;
}
.buying-img-wrap--tall { min-height: 320px; }
.buying-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section headings */
.buying-section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}
.buying-section-h2--white {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

/* Step label (Step 1 / Step 2) */
.buying-step-label {
    color: #c19b76;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Numbered cards (01–05) */
.buying-numbered-card {
    background: #fdf9f5;
    border-radius: 10px;
    border-top: 3px solid #c19b76;
    padding: 24px;
    height: 100%;
}

/* Step number inside numbered card */
.buying-step-num {
    color: #c19b76;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

/* h3 inside numbered cards */
.buying-step-title {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

/* Body text inside numbered cards */
.buying-step-body {
    color: #5a5a5a;
    line-height: 1.75;
    margin: 0;
}
.buying-step-body--mb { margin-bottom: 8px; }

/* Checklist section label */
.buying-checklist-label {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

/* Dark section text */
.buying-dark-p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}
.buying-dark-p--mb-sm { margin-bottom: 1.25rem; }
.buying-dark-p--mb-md { margin-bottom: 1.5rem; }
.buying-dark-p--mt   { margin-top: 1.75rem; margin-bottom: 1.25rem; }
.buying-dark-p--last { margin-top: 1.5rem; margin-bottom: 0; }

/* Dark section le-blocks */
.buying-dark-block {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(193, 155, 118, 0.35);
}
.buying-dark-text { color: rgba(255, 255, 255, 0.85); }

/* Quote dark variant */
.buying-quote--dark {
    border-left-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
}
.buying-quote--mt  { margin-top: 1.75rem; }
.buying-quote--mb0 { margin-bottom: 0; }
.buying-quote--mb-sm { margin-bottom: 1.25rem; }

/* Links */
.buying-link-inherit { color: inherit; }
.buying-dark-link    { color: #c19b76; }

/* Property info card */
.buying-property-card {
    background: #fdf9f5;
    border-left: 4px solid #c19b76;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 1.5rem 0;
}
.buying-property-meta {
    color: #5a5a5a;
    margin: 0 0 10px;
    font-size: .9rem;
    line-height: 1.6;
}
.buying-icon {
    color: #c19b76;
    margin-right: 8px;
}
.buying-property-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    line-height: 1;
}
.buying-price-currency {
    font-size: 1rem;
    font-weight: 400;
    color: #5a5a5a;
}

/* FAQ eyebrow */
.buying-faq-eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c19b76;
    margin-bottom: 12px;
}

/* FAQ accordion */
.blog-faq details {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #fff;
    cursor: pointer;
}
.blog-faq summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: block;
    position: relative;
    padding-right: 28px;
}
.blog-faq summary::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform .2s ease;
}
.blog-faq details[open] summary::after {
    transform: translateY(-35%) rotate(-135deg);
}
.blog-faq summary::-webkit-details-marker { display: none; }
.blog-faq p,
.blog-faq ul {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: .93rem;
    color: #555;
    line-height: 1.7;
}
.blog-faq a       { color: #c19b76; }
.blog-faq a:hover { color: #a8845f; }