/* =============================================
   OLIVIA BOHO — Minimalist Beauty Salon Style
   ============================================= */

:root {
    --cream:      #FAF8F5;
    --sand:       #F2EAE0;
    --blush:      #EAD8CA;
    --rose:       #B8977E;
    --rose-dark:  #96755E;
    --text:       #2C2420;
    --text-soft:  #7A6A62;
    --border:     #DDD0C4;
    --white:      #FFFFFF;

    --serif:  'Cormorant Garamond', Georgia, serif;
    --script: 'Great Vibes', cursive;
    --sans:   'Jost', sans-serif;

    --nav-h: 76px;
    --max-w: 1080px;
    --pad:   0 24px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-tap-highlight-color: transparent; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: auto; object-fit: cover; max-width: 100%; }

.container { max-width: var(--max-w); margin: 0 auto; padding: var(--pad); }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(250,248,245,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.logo-link { display: flex; align-items: center; }
.nav-logo { height: 56px; width: auto; mix-blend-mode: multiply; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.nav-links a {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    border: 1px solid var(--rose) !important;
    color: var(--rose) !important;
    padding: 9px 22px;
    letter-spacing: 1.2px;
    transition: background 0.25s, color 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rose) !important; color: var(--white) !important; }

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 1px;
    font-family: var(--sans);
    font-weight: 500;
}
.lang-btn { color: var(--text-soft); transition: color 0.2s; }
.lang-btn.active, .lang-btn:hover { color: var(--rose); }
.lang-sep { color: var(--border); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px; height: 1px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: -20px;
    background: url('tlo.webp') center/cover no-repeat;
    filter: blur(4px);
    transform: scale(1.04);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20,16,14,0.78) 0%,
        rgba(30,24,20,0.62) 55%,
        rgba(44,36,32,0.38) 100%
    );
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.hero-eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 24px;
}
.hero-inner h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
}
.hero-inner h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--blush);
}
.hero-inner p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    margin-bottom: 44px;
    line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: var(--rose);
    color: var(--white);
    border: 1px solid var(--rose);
    transition: background 0.25s, border-color 0.25s;
    display: inline-block;
}
.btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.btn-outline {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.55);
    transition: border-color 0.25s, background 0.25s;
    display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scaleY(1.15); }
}

/* ---- ABOUT ---- */
.about-section {
    padding: 120px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-photo {
    position: relative;
}
.about-photo img {
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
}
.photo-frame {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 70%;
    border: 1px solid var(--blush);
    z-index: -1;
}
.about-content { padding: 20px 0; }

.section-script {
    display: none;
    font-family: var(--script);
    font-size: 2rem;
    color: var(--rose);
    margin-bottom: 8px;
    line-height: 1;
}
.about-content h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 24px;
}
.about-content h2 em { font-style: italic; font-weight: 300; }

.thin-rule {
    width: 48px;
    height: 1px;
    background: var(--rose);
    margin-bottom: 28px;
}
.about-content p {
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--text-soft);
    margin-bottom: 18px;
    line-height: 1.85;
}
.btn-link-arrow {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--rose);
    border-bottom: 1px solid var(--blush);
    padding-bottom: 3px;
    transition: border-color 0.2s, color 0.2s;
}
.btn-link-arrow:hover { border-color: var(--rose); }

/* ---- SERVICES ---- */
.services-section {
    padding: 120px 0;
    background: var(--cream);
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header .section-script { font-size: 2.2rem; margin-bottom: 4px; }
.section-header h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}
.section-header p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-soft);
    letter-spacing: 0.5px;
}

.services-list { max-width: 760px; margin: 0 auto; }

.service-item { border-bottom: 1px solid var(--border); }
.service-item:first-child { border-top: 1px solid var(--border); }

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    cursor: pointer;
    gap: 16px;
}
.service-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.svc-num {
    font-family: var(--serif);
    font-size: 0.78rem;
    font-style: italic;
    color: var(--rose);
    letter-spacing: 0.5px;
    min-width: 24px;
}
.service-left h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text);
    transition: color 0.2s;
}
.service-item:hover .service-left h3 { color: var(--rose); }

.service-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.svc-toggle {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--rose);
    border: 1px solid var(--border);
    transition: transform 0.3s, background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.service-item.open .svc-toggle {
    transform: rotate(45deg);
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 0 0 44px;
}
.service-body p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 14px;
}
.svc-book {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--rose);
    border-bottom: 1px solid var(--blush);
    padding-bottom: 2px;
    transition: border-color 0.2s;
    margin-bottom: 20px;
}
.svc-book:hover { border-color: var(--rose); }
.service-item.open .service-body {
    max-height: 360px;
    padding: 0 0 24px 44px;
}

/* ---- FAQ ---- */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    gap: 16px;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    transition: color 0.2s;
}
.faq-header:hover { color: var(--rose); }
.faq-icon {
    font-size: 1rem;
    color: var(--rose);
    width: 26px; height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0;
}
.faq-body p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.85;
}
.faq-item.open .faq-body {
    max-height: 280px;
    padding: 0 0 22px;
}

/* ---- BOOKING BANNER ---- */
.booking-banner {
    background: var(--sand);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.booking-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.booking-text .section-script { font-size: 1.8rem; color: var(--rose); }
.booking-text h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
}
.booking-hours {
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-soft);
    margin-top: 8px;
}
.btn-booking {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 18px 44px;
    background: var(--rose);
    color: var(--white);
    border: 1px solid var(--rose);
    display: inline-block;
    white-space: nowrap;
    transition: background 0.25s, border-color 0.25s;
}
.btn-booking:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

/* ---- FOOTER ---- */
footer {
    background: var(--text);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-brand p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    max-width: 240px;
    margin-bottom: 20px;
}
.footer-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-insta:hover { color: var(--blush); }
.footer-linkedin {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    transition: color 0.2s;
}
.footer-linkedin:hover { color: var(--blush); }

.footer-contact h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.footer-contact a {
    display: block;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    transition: color 0.2s;
    line-height: 1.6;
}
.footer-contact a:hover { color: var(--blush); }
.footer-wa {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    color: #4ECB71 !important;
}
.footer-wa:hover { color: #6EDB8A !important; }
.footer-hours-note {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35) !important;
    letter-spacing: 0.5px;
    margin-top: 8px;
}
.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    filter: none;
    display: block;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 24px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.76rem;
    font-weight: 300;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.3);
}

/* ---- TABLET (max 900px) ---- */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 16px 20px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 999;
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 13px 16px;
        font-size: 0.85rem;
        border-radius: 2px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-links a::after { display: none; }
    .nav-cta {
        margin-top: 8px;
        text-align: center !important;
        justify-content: center;
        width: 100%;
    }
    .hamburger { display: flex; }
    .lang-switcher {
        position: absolute;
        right: 64px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        font-size: 0.68rem;
    }

    .hero-inner h1 { font-size: clamp(2.4rem, 7vw, 3.8rem); }
    .scroll-line { display: none; }

    .about-section { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .photo-frame { display: none; }
    .about-photo img { aspect-ratio: 16/9; object-position: center top; }

    .services-section, .faq-section { padding: 80px 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-map { grid-column: 1 / -1; }

    .booking-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .btn-booking { width: 100%; text-align: center; }
}

/* ---- MOBILE (max 600px) ---- */
@media (max-width: 600px) {
    :root { --pad: 0 18px; }

    .nav-container { gap: 16px; }

    .hero { min-height: 100vh; min-height: 100svh; }
    .hero-inner { padding: 0 18px; }
    .hero-inner h1 { font-size: 2.2rem; line-height: 1.12; }
    .hero-inner p { font-size: 0.92rem; margin-bottom: 32px; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { text-align: center; width: 100%; padding: 16px 24px; }

    .about-section, .services-section, .faq-section { padding: 64px 0; }
    .booking-banner { padding: 52px 0; }

    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.7rem; }
    .section-script { font-size: 1.7rem; }

    .about-content h2 { font-size: 1.9rem; }

    .service-header { padding: 20px 0; gap: 12px; }
    .service-left h3 { font-size: 0.95rem; }
    .svc-num { display: none; }
    .service-body { padding: 0; }
    .service-item.open .service-body { max-height: 420px; padding: 0 0 18px; }

    .faq-header { font-size: 0.97rem; padding: 18px 0; gap: 12px; }
    .faq-item.open .faq-body { max-height: 340px; }

    .booking-text h2 { font-size: 1.8rem; }
    .btn-booking { padding: 15px 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-map { grid-column: auto; }
    .footer-map iframe { height: 200px; }
    .footer-logo { height: 44px; }
    .footer-bottom { padding: 18px 18px; }
}

/* ---- BLOG ---- */
.blog-hero-section {
    padding: 160px 0 80px;
    background: var(--sand);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.blog-hero-inner .section-script { font-size: 2rem; }
.blog-hero-inner h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 12px;
}
.blog-hero-inner p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-soft);
}

.blog-container { padding-top: 60px; padding-bottom: 100px; }

.blog-search-bar { margin-bottom: 48px; display: flex; flex-direction: column; gap: 16px; }
.search-input-wrapper { position: relative; max-width: 520px; }
.search-input-wrapper svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-soft); pointer-events: none; }
.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--sans);
    font-size: 0.92rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--rose); }
.search-input::placeholder { color: var(--text-soft); }

.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-soft);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-pill:hover { border-color: var(--rose); color: var(--rose); }
.filter-pill.active { border-color: var(--rose); background: var(--rose); color: var(--white); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.blog-card { background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; transition: border-color 0.2s; }
.blog-card:hover { border-color: var(--rose); }
.blog-card-img-wrap { display: block; overflow: hidden; }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.72rem; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.blog-card-body h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.blog-card-body p { font-size: 0.9rem; font-weight: 300; color: var(--text-soft); line-height: 1.75; flex: 1; }
.blog-read-more { display: inline-block; margin-top: 20px; font-size: 0.78rem; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--rose); border-bottom: 1px solid var(--blush); padding-bottom: 2px; align-self: flex-start; transition: border-color 0.2s; }
.blog-read-more:hover { border-color: var(--rose); }
.blog-no-results { font-size: 0.9rem; color: var(--text-soft); text-align: center; padding: 40px 0; }

/* ---- ARTICLE ---- */
.article-hero-section {
    padding: 160px 0 60px;
    background: var(--sand);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.article-hero-section .article-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    display: block;
    margin-bottom: 20px;
}
.article-hero-section h1 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    max-width: 720px;
    margin: 0 auto 20px;
}
.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-soft);
    letter-spacing: 0.5px;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 24px 100px;
}
.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--rose);
    border-bottom: 1px solid var(--blush);
    padding-bottom: 2px;
    margin-bottom: 56px;
    transition: border-color 0.2s;
}
.article-back:hover { border-color: var(--rose); }

.article-wrap p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 22px;
    font-weight: 300;
}
.article-wrap h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    margin: 56px 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.article-wrap h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin: 32px 0 10px;
}
.article-wrap ul, .article-wrap ol { padding-left: 22px; margin-bottom: 22px; }
.article-wrap li { font-size: 1rem; line-height: 1.85; color: var(--text-soft); margin-bottom: 8px; font-weight: 300; }
.article-wrap strong { color: var(--text); font-weight: 600; }
.article-wrap em { font-style: italic; color: var(--rose-dark); }

.article-highlight {
    background: var(--sand);
    border-left: 2px solid var(--rose);
    padding: 24px 28px;
    margin: 32px 0;
}
.article-highlight p, .article-highlight li { color: var(--text); font-size: 0.97rem; margin-bottom: 8px; }
.article-highlight p:last-child, .article-highlight li:last-child { margin-bottom: 0; }

.article-image { margin: 44px 0; text-align: center; }
.article-image img { max-width: 80%; width: auto; max-height: 380px; object-fit: contain; display: inline-block; border: 1px solid var(--border); }
.article-image figcaption { margin-top: 12px; font-size: 0.82rem; color: var(--text-soft); font-style: italic; }

.check-list { list-style: none; padding: 0; }
.check-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.97rem; color: var(--text-soft); font-weight: 300; }
.check-list li:last-child { border-bottom: none; }

.article-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.9rem; }
.article-table th { background: var(--text); color: var(--white); padding: 12px 16px; text-align: left; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.article-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-soft); vertical-align: top; line-height: 1.6; font-weight: 300; }
.article-table tr:nth-child(even) td { background: var(--cream); }

.article-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    margin: 56px 0;
    border: 1px solid var(--border);
}
.author-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid var(--blush); }
.author-info strong { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.author-info p { margin: 0; font-size: 0.88rem; color: var(--text-soft); font-weight: 300; }

.article-disclaimer { padding: 20px 24px; background: var(--cream); border: 1px solid var(--border); font-size: 0.83rem; color: var(--text-soft); line-height: 1.7; margin-top: 20px; font-style: italic; }

.article-cta-center { text-align: center; margin-top: 52px; }

@media (max-width: 900px) {
    .blog-hero-section { padding: 120px 0 60px; }
    .blog-grid { grid-template-columns: 1fr; }
    .article-hero-section { padding: 120px 0 50px; }
    .article-wrap { padding: 52px 20px 80px; }
    .article-wrap h2 { font-size: 1.35rem; }
    .article-table { font-size: 0.82rem; }
}
@media (max-width: 600px) {
    .blog-hero-section { padding: 100px 0 48px; }
    .blog-container { padding-top: 32px; padding-bottom: 60px; }
    .blog-grid { gap: 20px; }
    .blog-card-body { padding: 20px; }
    .blog-card-body h2 { font-size: 1.2rem; }

    .article-hero-section { padding: 100px 0 40px; }
    .article-hero-section h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .article-wrap { padding: 40px 18px 60px; }
    .article-wrap h2 { font-size: 1.2rem; margin: 40px 0 16px; }
    .article-wrap p, .article-wrap li { font-size: 0.97rem; }
    .article-highlight { padding: 18px 20px; }
    .article-image img { max-width: 100%; }
    .article-table { display: block; overflow-x: auto; }
    .article-author { flex-direction: column; text-align: center; gap: 14px; }
    .author-avatar { width: 56px; height: 56px; }
    .article-back { margin-bottom: 36px; }
    .check-list li { font-size: 0.92rem; }
}
