:root { --c-black: #000000; --c-yellow: #FACC15; --c-white: #FFFFFF; --c-gray-dark: #1F2937; --radius-pill: 9999px; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 2rem; --space-xl: 4rem; }
body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-stretch: condensed; background-color: var(--c-white); color: var(--c-black); background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)" opacity="0.04"/%3E%3C/svg%3E'); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 1.75rem; border-radius: var(--radius-pill); font-weight: 800; text-transform: uppercase; text-decoration: none; border: 2px solid var(--c-black); transition: all 0.2s ease; cursor: pointer; }
.btn-primary { background-color: var(--c-yellow); color: var(--c-black); }
.btn-primary:hover { background-color: var(--c-black); color: var(--c-yellow); border-color: var(--c-yellow); }

.site-header { position: sticky; top: 0; background-color: var(--c-black); color: var(--c-white); z-index: 1000; border-bottom: 2px solid var(--c-yellow); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md) var(--space-lg); max-width: 1200px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: var(--space-sm); color: var(--c-white); text-decoration: none; font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; }
.brand svg { width: 32px; height: 32px; color: var(--c-yellow); }
.desktop-nav { display: flex; gap: var(--space-lg); align-items: center; }
.desktop-nav a { color: var(--c-white); text-decoration: none; font-weight: 700; text-transform: uppercase; position: relative; }
.desktop-nav a:not(.btn):hover { color: var(--c-yellow); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }

.burger-btn { display: none; background: none; border: none; color: var(--c-white); cursor: pointer; padding: 0; }
.burger-btn svg { width: 32px; height: 32px; }

.mobile-sheet-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 1001; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-sheet-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-sheet { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--c-black); border-top: 4px solid var(--c-yellow); border-top-left-radius: 24px; border-top-right-radius: 24px; z-index: 1002; padding: var(--space-lg); transition: bottom 0.4s cubic-bezier(0.1, 1, 0.2, 1); display: flex; flex-direction: column; gap: var(--space-md); box-sizing: border-box; }
.mobile-sheet.active { bottom: 0; }
.sheet-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.sheet-title { color: var(--c-yellow); font-weight: 900; text-transform: uppercase; font-size: 1.5rem; margin: 0; }
.close-sheet-btn { background: none; border: none; color: var(--c-white); cursor: pointer; padding: 0; }
.mobile-sheet nav { display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-sheet nav a { color: var(--c-white); text-decoration: none; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; border-bottom: 1px solid var(--c-gray-dark); padding-bottom: var(--space-sm); }
.mobile-sheet .btn-primary { margin-top: var(--space-md); width: 100%; text-align: center; }

.site-footer { background-color: var(--c-black); color: var(--c-white); padding: var(--space-xl) var(--space-lg); border-top: 4px solid var(--c-yellow); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-brand .brand { font-size: 1.75rem; }
.tagline { color: var(--c-white); font-size: 1.125rem; margin: 0; opacity: 0.9; font-weight: 600; }
.footer-col h3 { color: var(--c-yellow); text-transform: uppercase; font-weight: 900; margin-top: 0; margin-bottom: var(--space-md); font-size: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-links a { color: var(--c-white); text-decoration: none; opacity: 0.9; display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.footer-links a:hover { color: var(--c-yellow); text-decoration: underline; text-underline-offset: 4px; opacity: 1; }
.footer-links svg { width: 24px; height: 24px; color: var(--c-yellow); flex-shrink: 0; }
.footer-bottom { max-width: 1200px; margin: var(--space-xl) auto 0; padding-top: var(--space-lg); border-top: 1px solid var(--c-gray-dark); display: flex; flex-direction: column; gap: var(--space-md); align-items: center; text-align: center; font-size: 1rem; opacity: 0.8; font-weight: 500; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.legal-links { display: flex; gap: var(--space-lg); }
.legal-links a { color: var(--c-white); text-decoration: none; }
.legal-links a:hover { color: var(--c-yellow); text-decoration: underline; text-underline-offset: 4px; }

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); max-width: 100%; }
.form-control { border: 2px solid var(--c-black); border-radius: var(--radius-pill); padding: 0.875rem 1.5rem; font-family: inherit; font-size: 1rem; font-weight: 600; width: 100%; box-sizing: border-box; background: var(--c-white); }
.form-control:focus { outline: none; border-color: var(--c-yellow); box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.3); }

@media (max-width: 767px) { .desktop-nav { display: none; } .burger-btn { display: block; } }
/* 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 --- */
