:root {
    --black: #000000;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-accent: "Georgia", "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 80px;
    font-family: var(--font-ui);
    font-weight: 700;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-name,
.sheet-title,
.footer-logo,
.tagline {
    font-family: var(--font-accent);
}

a {
    text-decoration: none;
    color: inherit;
}

.pill-btn {
    border-radius: 9999px;
    border: 2px solid var(--black);
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 60px);
    z-index: 1000;
    border-bottom: 2px solid var(--white);
}

.header-left .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--white);
}

.header-left svg {
    width: 32px;
    height: 32px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burger-btn {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    padding: 10px;
}

.burger-btn svg {
    width: 24px;
    height: 24px;
}

.burger-btn:hover {
    background: var(--white);
    color: var(--black);
}

.cta-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    padding: 10px 24px;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: var(--black);
    color: var(--gold);
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--black);
    border-top: 2px solid var(--black);
    border-radius: 40px 40px 0 0;
    padding: 40px clamp(20px, 5vw, 60px) 60px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2000;
}

.bottom-sheet.is-open {
    transform: translateY(0);
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sheet-title {
    font-size: 2rem;
}

.close-btn {
    background: transparent;
    color: var(--black);
    padding: 10px;
}

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

.close-btn:hover {
    background: var(--black);
    color: var(--white);
}

.sheet-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sheet-links a {
    display: block;
    border: 2px solid var(--black);
    border-radius: 9999px;
    padding: 15px 30px;
    font-size: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.sheet-links a:hover {
    background: var(--black);
    color: var(--white);
}

.sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 1500;
}

.sheet-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.site-footer {
    background: var(--white);
    color: var(--black);
    border-top: 2px solid var(--black);
    padding: 60px clamp(20px, 5vw, 60px) 30px;
    font-size: 1rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-logo {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
}

.tagline {
    font-size: 1.2rem;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-contact a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s;
}

.footer-contact a:hover {
    text-decoration-color: var(--black);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--black);
    padding-top: 30px;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s;
}

.legal-links a:hover {
    text-decoration-color: var(--black);
}

.section-block {
    padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 60px);
    border-bottom: 2px solid var(--black);
}

.card {
    border: 2px solid var(--black);
    border-radius: 40px;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 10px 0 var(--black);
}

/* 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 --- */