:root {
    --slate: #1E293B;
    --amber: #F59E0B;
    --white: #FFFFFF;
    --space: 10px;
    --rad: 12px;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-stretch: condensed;
    background-color: var(--white);
    color: var(--slate);
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.03"/%3E%3C/svg%3E');
    padding-bottom: 70px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--space) * 2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--space);
    text-decoration: none;
    color: var(--slate);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-link svg {
    height: 24px;
    width: auto;
}

.desktop-nav {
    display: none;
    gap: calc(var(--space) * 3);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-bottom-nav {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }
}

.desktop-nav a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: var(--amber);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: calc(var(--space) * 2);
}

.cta-button {
    background: var(--amber);
    color: var(--slate);
    padding: calc(var(--space) * 0.8) calc(var(--space) * 2);
    border-radius: var(--rad);
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s;
    white-space: nowrap;
}

.cta-button:hover {
    background: #D97706;
}

.burger-menu {

    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate);
    padding: 5px;
    display: flex;
    align-items: center;
}

.burger-menu svg {
    display: none;
    width: 24px;
    height: 24px;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(30, 41, 59, 0.1);
    display: flex;
    justify-content: space-around;
    padding: var(--space) 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.03);
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--slate);
    font-size: 0.75rem;
    gap: 4px;
}

.mobile-bottom-nav a svg {
    width: 20px;
    height: 20px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 260px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: calc(var(--space) * 3);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space) * 3);
}

.drawer.open {
    right: 0;
}

.drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate);
    padding: 5px;
}

.drawer-close svg {
    width: 24px;
    height: 24px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space) * 2);
}

.drawer-nav a {
    text-decoration: none;
    color: var(--slate);
    font-size: 1.25rem;
    font-weight: 500;
}

.drawer-cta {
    text-align: center;
    margin-top: calc(var(--space) * 2);
}

.site-footer {
    background: var(--slate);
    color: var(--white);
    padding: calc(var(--space) * 6) calc(var(--space) * 2);
    margin-top: calc(var(--space) * 6);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space) * 4);
}

@media (min-width: 768px) {
   

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .brand-name {
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space);
}

.footer-brand .tagline {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--amber);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: calc(var(--space) * 0.5);
}

.contact-item svg {
    width: 18px;
    height: 18px;
}

.hide-req {
    display: none !important;
}

/* footer extras */
.footer__extras {
    margin-top: 16px;
}

.footer__extrasInner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
}

.footer-social__icon {
    display: block;
}

.footer__poemWrap {
    max-width: 520px;
}

.footer-poem {
    opacity: 0.9;
    font-size: 0.95em;
    line-height: 1.35;
}

/* --- injected by logo step --- */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.brand-logo {
    width: 28px;
    height: 28px;
    display: inline-block;
    flex: 0 0 auto
}

.brand-logo * {
    vector-effect: non-scaling-stroke
}

/* --- /injected by logo step --- */
@media screen and  (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    .burger-menu svg {
    display: block;
    }
    
}