:root {
  --primary: #b23a48;
  --primary-dark: #8f2d39;
  --secondary: #f4b942;
  --accent: #43aa8b;
  --pink-soft: #fff1f4;
  --sky-soft: #edf8ff;
  --light: #fffaf4;
  --dark: #1f2933;
  --text: #3b3b3b;
  --muted: #666;
  --white: #ffffff;
  --max-width: 1120px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 14px 34px rgba(0, 0, 0, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff5d8 0%, transparent 22%),
    radial-gradient(circle at top right, #ffe3ea 0%, transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #fff7ef 100%);
}

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

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

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

section {
  padding: 78px 0;
}

.section-light {
  background: linear-gradient(180deg, var(--light) 0%, #fff4e6 100%);
}

.section-white {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(2px);
}

.section-tint-pink {
  background: linear-gradient(180deg, var(--pink-soft) 0%, #fffaf8 100%);
}

.section-tint-blue {
  background: linear-gradient(180deg, var(--sky-soft) 0%, #ffffff 100%);
}

.section-title {
  text-align: center;
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 2.1rem;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
  color: var(--muted);
  font-size: 1.03rem;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: bold;
  transition: all 0.28s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #ffd86e);
  color: var(--dark);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Footer minimal */

.site-footer-minimal {
  background: #446d4e;
  color: #fff;
  padding: 18px 0 14px;
}

.footer-minimal__top,
.footer-minimal__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-minimal__top {
  margin-bottom: 12px;
}

.footer-minimal__logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-minimal__logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.footer-minimal__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-minimal__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-minimal__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer-minimal__social-link svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer-minimal__social-link[aria-label="Facebook"] {
  background: #4267b2;
}

.footer-minimal__social-link[aria-label="Twitter"] {
  background: #1da1f2;
}

.footer-minimal__social-link[aria-label="Instagram"] {
  background: #c13584;
}

.footer-minimal__social-link[aria-label="LinkedIn"] {
  background: #0077b5;
}

.footer-minimal__middle {
  margin-bottom: 10px;
}

.footer-minimal__email a {
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
}

.footer-minimal__email a:hover {
  text-decoration: underline;
}

.footer-minimal__copy {
  font-size: 0.98rem;
  text-align: right;
}

.footer-minimal__verse {
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
  font-size: 0.95rem;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .footer-minimal__top,
  .footer-minimal__middle {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-minimal__copy {
    text-align: center;
  }

  .footer-minimal__logo {
    width: 62px;
    height: 62px;
  }
}