:root {
  --beige: #f5f0e8;
  --green: #d4e4d4;
  --blue: #a3bffa;
  --coral: #ff6b6b;
  --text: #2f2a25;
  --muted: #5d564f;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--beige);
  background-image: url('../img/beige-texture.jpg');
  background-size: 700px;
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.logo-mark {
  font-size: 1.1rem;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}

.nav.open ul {
  display: flex;
}

.nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  display: block;
}

.nav a:hover {
  background: rgba(163, 191, 250, 0.2);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #ff8282;
}

.btn-outline {
  border-color: var(--coral);
  color: var(--coral);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 107, 107, 0.1);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text);
}

.hero-content {
  max-width: 700px;
  display: grid;
  gap: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-badges span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badges i {
  color: var(--coral);
}

.section {
  padding: 3.5rem 0;
  background: var(--beige);
  background-image: linear-gradient(rgba(245, 240, 232, 0.85), rgba(245, 240, 232, 0.92)), url('../img/pastel-paper.png');
  background-size: auto, 620px;
  background-repeat: no-repeat, repeat;
}

.section.alt {
  background: linear-gradient(180deg, rgba(212, 228, 212, 0.9) 0%, rgba(245, 240, 232, 0.95) 100%);
  background-image: linear-gradient(rgba(212, 228, 212, 0.3), rgba(245, 240, 232, 0.2)), url('../img/soft-grid.png');
  background-size: auto, 680px;
  background-repeat: no-repeat, repeat;
}

.section-header {
  text-align: center;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1rem;
}

.three-up {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.two-col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.5rem;
}

.card.soft {
  background: rgba(255, 255, 255, 0.8);
}

.card-highlight {
  border: 2px solid var(--blue);
  background: #f7faff;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue);
  color: #1f3d73;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #4e6757;
  margin: 0;
  font-size: 0.85rem;
}

.list {
  padding-left: 1.1rem;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.list li {
  color: var(--muted);
}

.centered {
  text-align: center;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.accordion details {
  border-radius: 12px;
  padding: 1rem 1.1rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
}

.accordion p {
  margin: 0.5rem 0 0;
}

.site-footer {
  background: #2f2a25;
  color: #f8f5ef;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.5rem;
}

.site-footer a {
  color: #f8f5ef;
}

.tagline {
  font-weight: 700;
  color: var(--coral);
}

.footer-note {
  text-align: center;
  margin: 0;
  color: #d9d0c3;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

input,
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-family: inherit;
  background: #fff;
}

label {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
}

.section .card h3 {
  margin: 0;
}

.section .card p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero {
    padding: 5rem 0 4rem;
  }
}
