:root {
  --c-sand: #F7F5F0;
  --c-graphite: #0A0A0A;
  --font-main: system-ui, -apple-system, sans-serif;
  --font-accent: "Georgia", serif;
  --radius-squircle: 16px;
  --shadow-hard: 6px 6px 0px 0px var(--c-graphite);
  --transition: all 0.2s ease;
}

body {
  margin: 0;
  background-color: var(--c-sand);
  color: var(--c-graphite);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--c-graphite);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}
html {
  scroll-behavior: smooth;
}
.site-header {
  position: sticky;
  top: 0;
  background-color: var(--c-sand);
  border-bottom: 2px solid var(--c-graphite);
  z-index: 1000;
}
.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.header-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.header-nav a {
  font-weight: 600;
  font-size: 1rem;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: bold;
}

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

.header-right {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  background-color: var(--c-sand);
  color: var(--c-graphite);
  border: 2px solid var(--c-graphite);
  border-radius: var(--radius-squircle);
  box-shadow: var(--shadow-hard);
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translate(6px, 6px);
  box-shadow: 0px 0px 0px 0px var(--c-graphite);
  opacity: 1;
}

.burger-btn {
  background: none;
  border: none;
  color: var(--c-graphite);
  cursor: pointer;
  padding: 0.5rem;
  display: none;
  z-index: 1001;
}

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

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--c-sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  font-size: 2.5rem;
  font-family: var(--font-accent);
  font-weight: bold;
}

.mobile-cta {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-family: var(--font-main);
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

.site-footer {
  background-color: var(--c-sand);
  border-top: 2px solid var(--c-graphite);
  padding: 5rem 2rem 3rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.footer-logo-text {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.125rem;
  margin: 0;
  font-weight: 500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-legal {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block;
  }
  
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-logo-wrapper {
    width: auto;
    justify-content: flex-start;
  }
  
  .header-right {
    position: static;
  }

}

/* 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;
}
/* Thanks Page Styles */
.thanks-main {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.thanks-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.thanks-card {
  background-color: white;
  border-radius: 16px;
  border: 2px solid #0A0A0A;
  box-shadow: 8px 8px 0px 0px #0A0A0A;
  padding: 3rem 2rem;
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-family: "Georgia", serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0A0A0A;
  margin-bottom: 0.75rem;
}

.thanks-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 1rem;
}

.thanks-text {
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.thanks-divider {
  height: 2px;
  background-color: #0A0A0A;
  margin: 1.5rem 0;
}

.thanks-small {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 2rem;
}

.thanks-button {
  display: inline-block;
  background-color: #7c3aed;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
  border-radius: 16px;
  border: 2px solid #0A0A0A;
  box-shadow: 4px 4px 0px 0px #0A0A0A;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.thanks-button:hover {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px 0px #0A0A0A;
}

@media (max-width: 640px) {
  .thanks-card {
    padding: 2rem 1.5rem;
  }
  
  .thanks-title {
    font-size: 2rem;
  }
  
  .thanks-subtitle {
    font-size: 1.125rem;
  }
  
  .thanks-text {
    font-size: 1rem;
  }
}