/* Minimal WP/Kadence shim so the real custom.css behaves the same way
   when viewed as a plain static HTML preview. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: #2E2E30; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* WP block layout helpers (mimic the real wrappers) */
.wp-block-group { width: 100%; }
.wp-block-group > .wp-block-group__inner-container { width: 100%; }
.is-layout-flow > * { margin-top: 0; margin-bottom: 0; }

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
}
.wp-block-column { flex: 1 1 0; min-width: 0; }

.wp-block-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.wp-block-button { margin: 0; }
.wp-block-button__link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: #F2B705;
    color: #2E2E30;
    padding: 14px 28px;
    font-weight: 600;
}

.wp-block-image { margin: 0; }
.wp-block-image figure { margin: 0; }

/* Preview-only header nav */
.preview-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 1px 0 rgba(46,46,48,0.08);
}
.preview-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.preview-header__brand {
    display: flex;
    align-items: stretch;
    gap: 0;
    text-decoration: none;
    color: #2E2E30;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.preview-header__brand img { height: 72px; width: auto; display: block; }
.preview-header__brand span { display: none; }
.preview-nav {
    margin-left: auto;
}
.preview-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.preview-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2E2E30;
    text-decoration: none;
}
.preview-nav a:hover,
.preview-nav a.is-active { color: #F2B705; }

.preview-header__cta {
    display: inline-block;
    background: #F2B705;
    color: #2E2E30;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 22px;
    text-decoration: none;
    border: 2px solid #F2B705;
    transition: all 0.2s ease;
}
.preview-header__cta:hover {
    background: #2E2E30;
    color: #F2B705;
    border-color: #2E2E30;
}

@media (max-width: 1024px) {
    .preview-header__cta {
        padding: 10px 16px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }
}
@media (max-width: 900px) {
    .preview-header__inner { padding: 0 12px 0 0; gap: 12px; }
    .preview-nav { margin-left: auto; }
    .preview-nav ul { gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
    .preview-nav a { font-size: 12px; letter-spacing: 0.05em; }
}
@media (max-width: 768px) {
    .preview-header__inner { padding: 0 10px 0 0; gap: 8px; }
    .preview-nav ul { gap: 6px 10px; }
    .preview-nav a { font-size: 11px; letter-spacing: 0.04em; }
    .preview-header__brand img { height: 60px; }
    .preview-header__cta {
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.04em;
    }
}
@media (max-width: 600px) {
    .preview-header__brand img { height: 52px; }
    .preview-nav a { font-size: 10px; letter-spacing: 0.03em; }
    .preview-nav ul { gap: 4px 8px; }
    .preview-header__cta {
        padding: 7px 10px;
        font-size: 10px;
        letter-spacing: 0.02em;
    }
}
@media (max-width: 475px) {
    .preview-header__inner {
        flex-wrap: nowrap;
        padding: 0 6px 0 0;
        gap: 4px;
    }
    .preview-header__brand img { height: 40px; }
    .preview-nav {
        flex: 1 1 auto;
        margin-left: 0;
    }
    .preview-nav ul {
        gap: 0;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        width: 100%;
    }
    .preview-nav a {
        font-size: 9px;
        letter-spacing: 0.01em;
    }
    .preview-header__cta {
        padding: 5px 8px;
        font-size: 9px;
        letter-spacing: 0.01em;
        border-width: 1px;
        flex-shrink: 0;
    }
}
