:root {
  --bg: #f8f2e8;
  --card: #fffdf9;
  --text: #3d2c1d;
  --muted: #7c6a58;
  --accent: #d6a96a;
  --accent-strong: #b77f3f;
  --border: #e8dccd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #fcf7ee 0%, #f3e7d4 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page-shell {
  width: min(1100px, 100%);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  backdrop-filter: none;
}

.hero {
  padding: 56px 32px 40px;
  text-align: center;
}

.brand-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f5ead8;
  color: var(--accent-strong);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fffdf9;
  box-shadow: 0 10px 25px rgba(183, 127, 63, 0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: none;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fffdf9;
  color: #3d2c1d;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(87, 60, 31, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0 32px 32px;
  text-align: center;
}

.card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.card h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.card ul {
  padding-left: 0;
  list-style: none;
}

@media (max-width: 768px) {
  body {
    padding: 12px;
  }

  .hero {
    padding: 40px 18px 28px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    padding: 0 18px 24px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
