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

body {
  font-family: "Fredoka", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff8e1;
  color: #4e342e;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.hidden { display: none !important; }

.header { margin-bottom: 18px; }

.back-link {
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
  color: #6d4c41;
  font-weight: 700;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.hero-left { flex: 2 1 300px; }
.hero-right { flex: 1.2 1 260px; display: flex; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #8d6e63;
  margin-bottom: 6px;
}

.title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #5d4037;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 40rem;
}

.badge-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  border: 2px solid #8d6e63;
  background: #ffd9e0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
}

.info-card {
  width: 100%;
  background: #fff3cd;
  border: 4px solid #8d6e63;
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 6px 6px 0 #5d4037;
}

.info-title { font-weight: 700; margin-bottom: 8px; }
.info-list { margin-left: 1.1rem; line-height: 1.6; }
.info-note { margin-top: 10px; font-size: 1.05rem; }

.section {
  margin-top: 18px;
  border-radius: 22px;
  border: 4px solid #8d6e63;
  box-shadow: 6px 6px 0 #5d4037;
}

.section-inner { padding: 1.6rem 1.4rem; }

.section--pink { background: #ffd9e0; }
.section--green { background: #d4f5e3; }

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: #5d4037;
  margin-bottom: 8px;
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #5d4037;
}

.form { margin-top: 12px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }

.label { font-weight: 700; color: #5d4037; }

.input {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  border: 3px solid #8d6e63;
  outline: none;
  font-size: 1rem;
  background: #fffdf5;
}

.input:focus {
  border-color: #d84315;
  box-shadow: 0 0 0 3px rgba(216,67,21,0.22);
}

.textarea { resize: vertical; min-height: 120px; }

.actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: #d84315;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 4px 4px 0 #5d4037;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  max-width: 260px;
}

.btn:hover {
  background: #bf360c;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 #5d4037;
}

.btn:disabled {
  background: #e0a093;
  cursor: not-allowed;
  transform: none;
  box-shadow: 3px 3px 0 #8d6e63;
}

.fineprint {
  font-size: 1rem;
  color: #6d4c41;
  max-width: 44rem;
}

.status {
  margin-top: 10px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 3px dashed #8d6e63;
  background: #fffdf5;
  font-size: 1.1rem;
  line-height: 1.5;
}

.footer {
  margin-top: 26px;
  text-align: center;
  font-size: 1rem;
  color: #6d6d6d;
}

/* Honeypot hidden area */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* -------------------------
   ✅ Success Modal
-------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  background: #fffdf5;
  border: 4px solid #8d6e63;
  border-radius: 22px;
  box-shadow: 10px 10px 0 #5d4037;
  padding: 1.2rem 1.2rem 1.3rem;
  transform: translateY(8px);
  animation: popIn 180ms ease-out forwards;
}

@keyframes popIn { to { transform: translateY(0); } }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1.5rem;
  color: #5d4037;
}

.modal-close {
  border: none;
  background: #ffd9e0;
  border: 2px solid #8d6e63;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 3px 3px 0 #5d4037;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 #5d4037;
}

.modal-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4e342e;
}

.modal-mini {
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #6d4c41;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.modal-btn { max-width: none; }

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr; }
}
.hero-contact {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(0,0,0,0.15);
    font-size: 0.9rem;
}

.hero-contact-label {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-contact-text a {
    color: inherit;
    text-decoration: underline;
}
