/* ═══════════════════════════════════════════════════════════════
   OTB Blog — Main Stylesheet
   One Time Bridals | blog.onetimebridals.shop
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ──────────────────────────────────── */
:root {
    --gold:         #d4a017;
    --gold-dark:    #b8861a;
    --gold-light:   #f0c040;
    --black:        #1a1a1a;
    --black-soft:   #2d2d2d;
    --cream:        #faf7f2;
    --cream-dark:   #f0ebe0;
    --white:        #ffffff;
    --grey:         #6b6b6b;
    --grey-light:   #e8e3db;
    --green-wa:     #25d366;
    --green-wa-dk:  #1da851;
    --red:          #c0392b;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

    --container:    1200px;
    --gap:          2rem;
    --radius:       8px;
    --radius-lg:    16px;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
    --shadow-md:    0 4px 24px rgba(0,0,0,.12);
    --shadow-lg:    0 8px 48px rgba(0,0,0,.18);

    --transition:   .25s ease;
    --header-h:     72px;
}

/* ─── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
a:hover { color: var(--black); }
a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 2px;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--black);
}

/* ─── Skip Link ────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: .5rem 1rem;
    border-radius: var(--radius);
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ─── Container ────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    white-space: nowrap;
    letter-spacing: .03em;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.btn--dark {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
}
.btn--dark:hover { background: var(--black-soft); color: var(--gold-light); }

.btn--outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn--outline:hover { background: var(--black); color: var(--white); }

.btn--whatsapp {
    background: var(--green-wa);
    color: var(--white);
    border-color: var(--green-wa);
}
.btn--whatsapp:hover { background: var(--green-wa-dk); border-color: var(--green-wa-dk); color: var(--white); }

.btn--sm  { padding: .5rem 1rem; font-size: .8rem; }
.btn--lg  { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Section Utilities ─────────────────────────────────────────── */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--black);
    margin-bottom: .75rem;
}
.section-title--center { text-align: center; }
.section-sub { color: var(--grey); font-size: 1rem; margin-bottom: 2.5rem; }
.section-sub--center { text-align: center; }

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: .5rem;
}
.section-header__link {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: .9rem;
}

/* ─── SITE HEADER ────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    height: var(--header-h);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

/* Logo */
.site-header__logo a { text-decoration: none; }
.logo-otb {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .05em;
}
.logo-blog {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 300;
    color: var(--grey);
    margin-left: .25rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Nav */
.site-header__nav { flex: 1; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}
.nav-menu__link {
    display: block;
    padding: .5rem .75rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    letter-spacing: .02em;
}
.nav-menu__link:hover,
.nav-menu__link--active { background: var(--cream); color: var(--gold-dark); }

/* Header CTA */
.site-header__cta { display: flex; align-items: center; gap: .5rem; }

/* Hamburger */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    margin-left: auto;
}
.site-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.site-header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu — content-sized dropdown (not full-screen) */
.mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 998;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    border-top: 1px solid var(--grey-light);
    transform: translateY(-12px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease, visibility .3s;
    visibility: hidden;
    pointer-events: none;
}
.mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
@media (min-width: 901px) {
    .mobile-menu { display: none !important; }
}
.mobile-menu__inner { padding: 1.5rem; }

/* ── Mobile menu nav: works with both menu_class (mobile-nav-menu) and fallback (nav-menu) */
.mobile-menu .nav-menu,
.mobile-menu .mobile-nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    list-style: none;
}
.mobile-menu .nav-menu li,
.mobile-menu .mobile-nav-menu li {
    border-bottom: 1px solid var(--grey-light);
}
.mobile-menu .nav-menu li:last-child,
.mobile-menu .mobile-nav-menu li:last-child {
    border-bottom: none;
}
.mobile-menu .nav-menu a,
.mobile-menu .mobile-nav-menu a,
.mobile-nav-menu .nav-menu__link {
    display: flex;
    align-items: center;
    padding: .875rem .5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    min-height: 48px;
    border-radius: 0;
    transition: color var(--transition);
}
.mobile-menu .nav-menu a:hover,
.mobile-menu .mobile-nav-menu a:hover,
.mobile-nav-menu .nav-menu__link:hover,
.mobile-nav-menu .nav-menu__link--active { color: var(--gold-dark); }
/* Mobile menu backdrop */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 996;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}
.mobile-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__ctas {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey-light);
}

/* ─── BREADCRUMBS ────────────────────────────────────────────────── */
.otb-breadcrumbs {
    padding: .75rem 0;
    font-size: .8rem;
    color: var(--grey);
}
.otb-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem; list-style: none; }
.otb-breadcrumbs a { color: var(--grey); text-decoration: none; }
.otb-breadcrumbs a:hover { color: var(--gold-dark); }
.otb-breadcrumbs__sep { color: var(--grey-light); }

/* ─── HERO SECTION ────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--black);
    min-height: min(80vh, 700px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,26,26,.95) 0%, rgba(26,26,26,.7) 60%, rgba(212,160,23,.15) 100%),
        url('/wp-content/themes/otb-blog/assets/img/hero-bg.jpg') center/cover no-repeat;
}
.hero__inner {
    position: relative;
    padding-block: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 720px;
}
.hero__eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero__title--gold { color: var(--gold); }
.hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.65;
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.7);
}

/* ─── SERVICES ────────────────────────────────────────────────────── */
.services {
    padding: 5rem 0;
    background: var(--cream);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--grey-light);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}
.service-card__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gold);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .2rem .6rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.service-card__badge--green { background: var(--green-wa); }

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}
.service-card__desc { color: var(--grey); font-size: .9rem; line-height: 1.65; }
.service-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex: 1;
}
.service-card__features li {
    font-size: .875rem;
    color: var(--black);
    padding-left: 1.25rem;
    position: relative;
}
.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.service-card__cta { margin-top: auto; }

/* ─── ABOUT STRIP ─────────────────────────────────────────────────── */
.about-strip {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
}
.about-strip__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}
.about-strip__eyebrow {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: .75rem;
}
.about-strip__title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 1rem;
}
.about-strip__text p { color: var(--grey); margin-bottom: .75rem; }
.about-strip__text a { color: var(--gold-dark); font-weight: 700; }
.about-strip__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-width: 200px;
}
.stat { text-align: center; }
.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat__label { font-size: .8rem; color: var(--grey); margin-top: .25rem; }

/* ─── LATEST POSTS ────────────────────────────────────────────────── */
.latest-posts { padding: 5rem 0; }

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* 7-post grid: 1 featured + 2 rows of 3 */
@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .post-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
    .post-card--featured .post-card__img-wrap { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
    .post-card--featured .post-card__body { padding: 2.5rem; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
    .post-card:not(.post-card--featured) { grid-column: span 2; }
}

.posts-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.posts-grid--archive { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.posts-grid__footer { text-align: center; margin-top: 3rem; }

/* ─── POST CARD ───────────────────────────────────────────────────── */
.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.post-card__img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.post-card__img-wrap--no-img { background: var(--black); display: flex; align-items: center; justify-content: center; }
.post-card__img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, #2d2010 100%);
}
.post-card__img-placeholder span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: .4;
    letter-spacing: .1em;
}
.post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.post-card:hover .post-card__img { transform: scale(1.04); }

.post-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background: var(--white);
}

.post-card__cat {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-dark);
    text-decoration: none;
}
.post-card__cat:hover { color: var(--black); }

.post-card__cat--badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: .2rem .7rem;
    border-radius: 20px;
    margin-bottom: .25rem;
}
.post-card__cat--badge:hover { background: var(--gold-dark); color: var(--white); }

.post-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.35;
    flex: 1;
}
.post-card__title--lg { font-size: 1.6rem; }
.post-card__title a { color: var(--black); text-decoration: none; }
.post-card__title a:hover { color: var(--gold-dark); }

.post-card__excerpt { color: var(--grey); font-size: .875rem; line-height: 1.6; }

.post-card__meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .775rem;
    color: var(--grey);
}
.post-card__read-link {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-decoration: none;
    margin-top: auto;
}
.post-card__read-link:hover { color: var(--black); }

/* ─── DESIGNERS STRIP ─────────────────────────────────────────────── */
.designers-strip {
    padding: 4rem 0;
    background: var(--black);
}
.designers-strip .section-title { color: var(--white); }
.designers-strip__logos {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-block: 2rem;
}
.designer-tag {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(212,160,23,.3);
    color: var(--gold-light);
    padding: .5rem 1.25rem;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: default;
    transition: background var(--transition), border-color var(--transition);
}
.designer-tag:hover { background: rgba(212,160,23,.15); border-color: var(--gold); }
.designers-strip__note { text-align: center; color: rgba(255,255,255,.6); font-size: .875rem; }
.designers-strip__note a { color: var(--gold); }

/* ─── POST HERO ───────────────────────────────────────────────────── */
.single-post-wrap { padding-bottom: 4rem; }

.post-hero { position: relative; margin-bottom: 0; }
.post-hero__img-wrap { position: relative; height: min(55vh, 500px); overflow: hidden; }
.post-hero__img { width: 100%; height: 100%; object-fit: cover; }
.post-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,.9) 0%, rgba(26,26,26,.3) 60%, transparent 100%);
}
.post-hero__content {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}
.post-hero--no-img .post-hero__content {
    background: var(--cream);
    padding: 3rem 0;
}
.post-cat-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: .25rem .8rem;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    margin-bottom: 1rem;
}
.post-hero__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.post-hero--no-img .post-hero__title { color: var(--black); text-shadow: none; }
.post-hero__meta { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; color: rgba(255,255,255,.8); font-size: .825rem; }
.post-hero--no-img .post-hero__meta { color: var(--grey); }
.post-hero--no-img .post-meta-sep { color: var(--grey-light); }
.post-meta-author { display: flex; align-items: center; gap: .5rem; }
.post-meta-author__avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--gold); }
.post-meta-sep { color: rgba(255,255,255,.4); }
.post-meta-read-time { background: rgba(255,255,255,.15); padding: .2rem .6rem; border-radius: 12px; }

/* ─── POST LAYOUT ─────────────────────────────────────────────────── */
.post-layout, .page-layout, .archive-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
    padding-top: 2.5rem;
}

/* ─── TABLE OF CONTENTS ───────────────────────────────────────────── */
.toc {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.toc__title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--grey);
    margin-bottom: .75rem;
    font-family: var(--font-body);
}
.toc__nav { display: flex; flex-direction: column; gap: .35rem; }
.toc__nav a {
    font-size: .875rem;
    color: var(--black);
    text-decoration: none;
    padding: .25rem 0;
    border-bottom: 1px solid transparent;
    transition: color var(--transition);
}
.toc__nav a:hover { color: var(--gold-dark); }
.toc__nav a.toc-active { color: var(--gold-dark); font-weight: 700; }

/* ─── POST CONTENT BODY ───────────────────────────────────────────── */
.post-content__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black-soft);
}
.post-content__body h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--gold);
    color: var(--black);
}
.post-content__body h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: var(--black);
}
.post-content__body h4 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: .5rem; }
.post-content__body p { margin-bottom: 1.25rem; }
.post-content__body ul, .post-content__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.post-content__body ul { list-style: disc; }
.post-content__body ol { list-style: decimal; }
.post-content__body li { line-height: 1.65; }
.post-content__body blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--gold);
    background: var(--cream);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--grey);
    font-size: 1.05rem;
}
.post-content__body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: .9rem;
}
.post-content__body th, .post-content__body td {
    padding: .75rem 1rem;
    border: 1px solid var(--grey-light);
    text-align: left;
}
.post-content__body th {
    background: var(--black);
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-body);
}
.post-content__body tr:nth-child(even) td { background: var(--cream); }
.post-content__body img {
    border-radius: var(--radius);
    margin-block: 1.5rem;
}
.post-content__body a { color: var(--gold-dark); font-weight: 700; }
.post-content__body a:hover { color: var(--black); }
.post-content__body strong { color: var(--black); font-weight: 700; }
.post-content__body code {
    background: var(--cream);
    padding: .15em .4em;
    border-radius: 4px;
    font-size: .875em;
    color: var(--gold-dark);
}

/* ─── POST TAGS & SHARE ───────────────────────────────────────────── */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-light);
}
.post-tags__label { font-size: .8rem; color: var(--grey); font-weight: 700; }
.post-tag {
    background: var(--cream);
    color: var(--black);
    padding: .3rem .8rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.post-tag:hover { background: var(--gold); color: var(--white); }

.post-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: 1.5rem;
}
.post-share__label { font-size: .8rem; color: var(--grey); font-weight: 700; }
.share-btn {
    padding: .45rem 1rem;
    border-radius: var(--radius);
    font-size: .775rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity var(--transition);
}
.share-btn:hover { opacity: .85; text-decoration: none; }
.share-btn--twitter { background: #1da1f2; color: #fff; }
.share-btn--facebook { background: #1877f2; color: #fff; }
.share-btn--whatsapp { background: var(--green-wa); color: #fff; }
.share-btn--copy { background: var(--grey-light); color: var(--black); font-family: var(--font-body); }

/* ─── SIDEBAR ─────────────────────────────────────────────────────── */
.post-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-cta {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.sidebar-cta__title { font-family: var(--font-heading); font-size: 1.25rem; color: var(--gold); }
.sidebar-cta__text { font-size: .875rem; color: rgba(255,255,255,.75); line-height: 1.6; }

.sidebar-widget {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.sidebar-widget__title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--grey);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.sidebar-posts { display: flex; flex-direction: column; gap: .75rem; }
.sidebar-posts__item { display: flex; gap: .75rem; align-items: flex-start; }
.sidebar-posts__thumb { flex-shrink: 0; width: 60px; height: 60px; border-radius: var(--radius); overflow: hidden; }
.sidebar-posts__img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-posts__title { font-size: .8rem; font-weight: 700; color: var(--black); text-decoration: none; line-height: 1.4; display: block; }
.sidebar-posts__title:hover { color: var(--gold-dark); }
.sidebar-posts__date { font-size: .7rem; color: var(--grey); margin-top: .25rem; display: block; }

.sidebar-cats { display: flex; flex-direction: column; gap: .35rem; }
.sidebar-cats__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .875rem;
    color: var(--black);
    text-decoration: none;
    padding: .35rem 0;
    border-bottom: 1px solid var(--grey-light);
}
.sidebar-cats__item a:hover { color: var(--gold-dark); }
.sidebar-cats__count { font-size: .75rem; color: var(--grey); }

/* ─── ARCHIVE / CATEGORY FILTER ──────────────────────────────────── */
.archive-hero {
    background: var(--black);
    padding: 3rem 0 2rem;
    margin-bottom: 0;
}
.archive-hero--blog { background: var(--cream); }
.archive-hero--blog .archive-hero__title { color: var(--black); }
.archive-hero--blog .archive-hero__desc { color: var(--grey); }
.archive-hero__type {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.archive-hero__title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: var(--white); }
.archive-hero__desc { color: rgba(255,255,255,.7); margin-top: .75rem; max-width: 600px; }

/* Category filter bar */
.cat-filter-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    padding: .75rem 0;
    position: sticky;
    top: var(--header-h);
    z-index: 90;
}
.cat-filter {
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
    margin-bottom: 0;
}
.cat-filter::-webkit-scrollbar { display: none; }
.cat-filter__btn {
    padding: .4rem .9rem;
    border: 2px solid var(--grey-light);
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--grey);
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.cat-filter__btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.cat-filter__btn--active { border-color: var(--gold); background: var(--gold); color: var(--white); }

/* ─── PAGINATION ─────────────────────────────────────────────────── */
.pagination { margin-top: 3rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .75rem;
    border: 2px solid var(--grey-light);
    border-radius: var(--radius);
    font-size: .875rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: all var(--transition);
}
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold-dark); }
.pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ─── RELATED POSTS ───────────────────────────────────────────────── */
.related-posts {
    padding: 4rem 0;
    background: var(--cream);
    margin-top: 3rem;
}

/* ─── PAGE 404 ────────────────────────────────────────────────────── */
.page-404 { padding: 6rem 0; text-align: center; }
.page-404__number {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--gold);
    display: block;
    line-height: 1;
    opacity: .15;
}
.page-404__title { font-size: clamp(1.25rem, 3vw, 2rem); margin-bottom: 1rem; }
.page-404__text { color: var(--grey); max-width: 480px; margin: 0 auto 2rem; }
.page-404__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.page-404__suggestions-title { font-size: 1.25rem; margin-bottom: 1.5rem; }

/* ─── FOOTER CTA ──────────────────────────────────────────────────── */
.footer-cta {
    background: var(--cream-dark);
    border-top: 4px solid var(--gold);
    padding: 3rem 0;
}
.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-cta__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--black);
}
.footer-cta__sub { color: var(--grey); margin-top: .25rem; }
.footer-cta__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── FOOTER MAIN ─────────────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,.75); }

.footer-main { padding: 4rem 0 2rem; }
.footer-main__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo { margin-bottom: .75rem; }
.footer-logo a { text-decoration: none; }
.footer-col--about .logo-otb { font-size: 1.75rem; }
.footer-col__desc { font-size: .875rem; line-height: 1.7; margin-bottom: .75rem; }
.footer-col__tagline { font-style: italic; color: rgba(255,255,255,.5); font-size: .825rem; }

.footer-col__title {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-col__links { display: flex; flex-direction: column; gap: .5rem; }
.footer-col__links a {
    font-size: .875rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-col__links a:hover { color: var(--gold-light); }

.footer-col__contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-col__contact li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.footer-col__contact svg { flex-shrink: 0; margin-top: .2rem; color: var(--gold); }
.footer-col__contact a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-col__contact a:hover { color: var(--gold-light); }
.footer-col__contact span { color: rgba(255,255,255,.5); }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0;
}
.footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom__copy { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom__copy a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-bottom__copy a:hover { color: var(--gold-light); }
.footer-bottom__made { font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-bottom__made a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom__nav { display: inline-flex; gap: 1rem; margin-left: 1rem; }
.footer-bottom__nav a { color: rgba(255,255,255,.45); font-size: .75rem; text-decoration: none; }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────── */
/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────── */
@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: var(--green-wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
    background: var(--green-wa-dk);
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37,211,102,.55);
    color: var(--white);
    animation: none;
}
.whatsapp-float::after {
    content: 'Chat with us';
    position: absolute;
    right: 68px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-float:hover::after { opacity: 1; }
.whatsapp-float:focus-visible { outline: 3px solid var(--green-wa); outline-offset: 4px; }

/* ─── BACK TO TOP ─────────────────────────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 899;
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
    box-shadow: var(--shadow-sm);
    font-size: 18px;
    line-height: 1;
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover { background: var(--gold); color: var(--black); }

/* ─── SEARCH BAR ──────────────────────────────────────────────────── */
.header-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    padding: .4rem;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
.header-search-btn:hover { color: var(--gold); }
.search-overlay {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(0,0,0,.7);
    z-index: 997;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.search-overlay__inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}
.search-overlay__form {
    display: flex;
    gap: .75rem;
}
.search-overlay__input {
    flex: 1;
    padding: .75rem 1rem;
    border: 2px solid var(--grey-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}
.search-overlay__input:focus {
    outline: none;
    border-color: var(--gold);
}
.search-overlay__submit {
    padding: .75rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background var(--transition);
}
.search-overlay__submit:hover { background: var(--gold-dark); }
.search-overlay__hint {
    margin-top: .75rem;
    font-size: .8rem;
    color: var(--grey);
}

/* ─── NO POSTS ────────────────────────────────────────────────────── */
.no-posts { text-align: center; padding: 3rem; color: var(--grey); }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-main__grid { grid-template-columns: 1fr 1fr; }
    .footer-col--about { grid-column: 1 / -1; }
    .about-strip__inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-strip__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .post-layout, .page-layout, .archive-layout {
        grid-template-columns: 1fr;
    }
    .post-sidebar { position: static; }
    .site-header__nav { display: none; }
    .site-header__cta .btn--gold { display: none; }
    /* Hide WhatsApp btn in header — it's in the mobile menu CTAs */
    .site-header__cta .btn--whatsapp { display: none; }
    .site-header__hamburger { display: flex; }
    /* .mobile-menu display handled by visibility/transform — see above */
    .footer-cta__inner { flex-direction: column; align-items: flex-start; }
    .search-bar { display: none; }
}

@media (max-width: 600px) {
    :root { --header-h: 60px; }

    /* Hero */
    .hero { min-height: min(70vh, 560px); }
    .hero__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .hero__sub { font-size: .9rem; }
    .hero__buttons { flex-direction: column; }
    .hero__trust { flex-direction: column; gap: .5rem; font-size: .8rem; }

    /* Logo smaller on mobile */
    .logo-otb { font-size: 1.1rem; }
    .logo-blog { font-size: .75rem; }

    /* Mobile menu inner: more compact */
    .mobile-menu__inner { padding: 1rem 1rem 1.25rem; }
    .mobile-menu__ctas { margin-top: 1rem; padding-top: 1rem; gap: .6rem; }

    /* Post cards: tighten padding */
    .post-card__body { padding: 1rem; }
    .post-card__title { font-size: 1rem; }
    .post-card__excerpt { font-size: .875rem; -webkit-line-clamp: 3; }

    /* Post hero without image: reduce padding */
    .post-hero--no-img .post-hero__content { padding: 1.75rem 0 1.25rem; }
    .post-hero__title { font-size: clamp(1.4rem, 6vw, 2rem); }

    /* Post content */
    .post-content__body { font-size: 1rem; }
    .toc { padding: 1rem; }

    /* Archive/blog page */
    .archive-hero { padding: 2rem 0 1.5rem; }
    .archive-hero__title { font-size: 1.6rem; }
    .posts-grid--archive { gap: 1rem; }

    /* Section padding */
    .services { padding: 2.5rem 0; }
    .latest-posts { padding: 2.5rem 0; }
    .designers-strip { padding: 2rem 0; }

    /* Services: single column, reduce padding */
    .services__grid { grid-template-columns: 1fr; }
    .service-card { padding: 1.25rem; }

    /* Footer */
    .footer-main__grid { grid-template-columns: 1fr; }
    .about-strip__stats { grid-template-columns: repeat(3, 1fr); }
    .footer-cta__buttons { flex-direction: column; width: 100%; }

    /* Touch targets: minimum 44px */
    .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .cat-filter__btn { min-height: 36px; }
    .nav-menu__link { min-height: 44px; display: flex; align-items: center; }
}

/* ─── PRINT STYLES ────────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .post-sidebar,
    .whatsapp-float, .footer-cta, .related-posts { display: none !important; }
    .post-layout { grid-template-columns: 1fr; }
    body { color: #000; font-size: 12pt; }
    a::after { content: ' (' attr(href) ')'; font-size: 10pt; color: #555; }
}

/* ─── ACCESSIBILITY ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
