:root {
  --bg: #f8f8fb;
  --text: #1e1e28;
  --muted: #5c5c6d;
  --accent: #f0aa4b;
  --accent-2: #4e9cf0;
  --border: #e5e5f0;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "PT Serif", Georgia, serif;
  background: var(--bg);
  color: var(--text);
}
a { color: #313131; text-decoration: none; }
a:hover { text-decoration: underline; }

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.hero {
  padding: 2.5rem 2rem;
  border-radius: 14px;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
  }
}

.hero-logo {
  width: 160px;
  max-width: 200px;
  justify-self: center;
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}

.hero h1 {
  margin: 0 0 0.35rem 0;
  font-family: "Silkscreen", "PT Sans", Helvetica, Arial, sans-serif;
  font-size: 2.1rem;
}

.hero .lead {
  margin: 0 0 1.25rem 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  font-weight: 600;
  color: #1f1f1f;
  transition: box-shadow 0.2s, transform 0.1s, border-color 0.2s;
  text-decoration: none;
}
.button:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.button.primary {
  background: linear-gradient(135deg, var(--text), #2d2d3a);
  color: #fff;
  border-color: #1c1c25;
}
.button.primary:hover {
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}
.button.ghost {
  background: rgba(78,156,240,0.12);
  color: #0f3a70;
  border-color: rgba(78,156,240,0.3);
}
.button.ghost:hover {
  box-shadow: 0 10px 18px rgba(78,156,240,0.18);
}

.section {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.section h2 {
  margin-top: 0;
  font-family: "Silkscreen", "PT Sans", Helvetica, Arial, sans-serif;
}
.section p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}
.contact-form label {
  font-weight: 600;
  color: #404040;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text);
}
.contact-form button {
  justify-self: start;
  padding: 0.75rem 1.3rem;
  border: none;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.1s;
}
.contact-form button:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
}

