*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: linear-gradient(160deg, #f3e8ff, #faf5ff);
  background-attachment: fixed;
  font-family: 'Karla', sans-serif;
  color: #555;
  line-height: 1.65;
  font-size: 15px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Archivo', sans-serif;
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.4rem; margin-bottom: 12px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; }

p { margin-bottom: 12px; }

a { color: #7c3aed; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.muted { color: #999; }

/* Cookie banner */
.cookie-banner { padding: 12px 0; }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 14px; }
.cookie-banner.hidden { display: none; }

/* Header */
.site-header { padding: 16px 0; }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.site-logo {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.05rem;
  color: #1a1a1a;
}
.site-logo:hover { text-decoration: none; }
.main-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.main-nav a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #444;
  font-weight: 500;
}
.main-nav a:hover { color: #7c3aed; text-decoration: none; }

/* Sections */
.section { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 32px; }

/* Hero */
.hero { padding: 64px 0 48px; }
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }

/* About / generic prose */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin-top: 28px; }
.prose p, .prose li { margin-bottom: 12px; }
.prose ul { padding-left: 20px; margin-bottom: 12px; }

/* Buttons */
.btn {
  display: inline-block;
  background: #7c3aed;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-small { padding: 6px 16px; font-size: 13px; }
.btn-block { width: 100%; padding: 12px; }

/* Grid + Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 18px rgba(124, 58, 237, 0.08); }

/* Contact */
.contact-info { text-align: center; max-width: 560px; margin: 0 auto 24px; }
.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}
.form-card h2 { text-align: center; }
.form-card .muted { text-align: center; margin-bottom: 20px; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
  font-weight: 500;
}
input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  font-family: 'Karla', sans-serif;
  background: #fff;
  transition: border-color 0.2s;
}
input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.13);
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(124,58,237,0.08);
  color: #5b21b6;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.form-success.visible { display: block; }

/* Footer */
.site-footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}
.site-footer p { margin-bottom: 8px; }
.footer-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .hero { padding: 40px 0 24px; }
  .section { padding: 32px 0; }
  .form-card { padding: 24px; }
  .nav-wrap { justify-content: center; text-align: center; }
  .main-nav { gap: 16px; justify-content: center; }
  .cookie-inner { justify-content: center; text-align: center; }
}
