:root {
  --color-mint: #A0E8AF;
  --color-yellow: #FFCF56;
  --color-white: #FFFFFF;
  --color-text: #1E293B;
  --color-border: #1E293B;
  --radius-soft: 8px;
  --shadow-flat: 4px 4px 0 var(--color-border);
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 2rem);
  --space-lg: clamp(2rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

.bordered {
  border: 2px solid var(--color-border);
}

.shadow-flat {
  box-shadow: var(--shadow-flat);
}

.badge-accent {
  border-radius: 9999px;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 100;
  padding: var(--space-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-link svg {
  width: 32px;
  height: 32px;
}

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

.cta-btn {
  background-color: var(--color-yellow);
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-flat);
  transition: transform 0.1s;
}

.cta-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-border);
}

.hamburger-btn {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s;
}

.hamburger-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-border);
}

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

.bottom-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bottom-sheet.open {
  pointer-events: auto;
}

.sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-sheet.open .sheet-overlay {
  opacity: 1;
}

.sheet-content {
  position: relative;
  background: var(--color-white);
  border-bottom: none;
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.close-btn {
  align-self: flex-end;
  background: var(--color-mint);
  border-radius: var(--radius-soft);
  padding: 0.5rem;
  cursor: pointer;
}

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

.sheet-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-size: 1.5rem;
  font-weight: 600;
}

.sheet-nav a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  width: fit-content;
}

.sheet-nav a:hover {
  border-bottom-color: var(--color-mint);
}

.site-footer {
  background: var(--color-mint);
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: var(--space-lg) var(--space-md);
  margin-top: var(--space-lg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 2fr;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.footer-brand h2 {
  margin: 0 0 var(--space-sm) 0;
  font-size: 1.5rem;
}

.tagline {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-yellow);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 2px solid var(--color-border);
}

.footer-links h3 {
  margin: 0 0 var(--space-sm) 0;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.25rem;
}

.footer-nav, .footer-contact, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--color-white);
}

.footer-bottom {
  max-width: 1200px;
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-border);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}
/* 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 --- */
