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

:root {
  --cream: #fdf6ec;
  --warm: #f5e6ce;
  --terra: #c4703f;
  --deep: #2b1d0e;
  --mid: #7a4f2d;
  --accent: #e8a96a;
  --green: #5a7a4a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  background: var(--deep);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, #5a3a1a55 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, #c4703f22 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, #5a7a4a18 0%, transparent 60%);
}

.paws { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.paw {
  position: absolute; font-size: 1.4rem; opacity: 0.08;
  animation: drift 20s linear infinite;
}
.paw:nth-child(1)  { top: 10%; left: 8%;  animation-delay: 0s;  font-size: 1.1rem; }
.paw:nth-child(2)  { top: 25%; left: 88%; animation-delay: 3s;  font-size: 1.8rem; }
.paw:nth-child(3)  { top: 60%; left: 5%;  animation-delay: 6s;  font-size: 1rem; }
.paw:nth-child(4)  { top: 75%; left: 80%; animation-delay: 9s;  font-size: 1.5rem; }
.paw:nth-child(5)  { top: 45%; left: 50%; animation-delay: 12s; font-size: 2rem; }
.paw:nth-child(6)  { top: 85%; left: 40%; animation-delay: 2s;  font-size: 1.2rem; }

@keyframes drift {
  0%   { transform: translateY(0px) rotate(0deg);   opacity: 0.06; }
  50%  { transform: translateY(-18px) rotate(8deg); opacity: 0.12; }
  100% { transform: translateY(0px) rotate(0deg);   opacity: 0.06; }
}

.hero-tag {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  position: relative; animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700; color: var(--cream); line-height: 1.05;
  position: relative; animation: fadeUp 0.9s ease 0.15s both;
}
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  margin-top: 22px; font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300; color: #c9b49a; max-width: 540px; line-height: 1.7;
  position: relative; animation: fadeUp 1s ease 0.3s both;
}

.hero-cta {
  margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; position: relative; animation: fadeUp 1s ease 0.45s both;
}

.btn {
  padding: 13px 30px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; border: none; display: inline-block;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px #0005; }
.btn-primary { background: var(--terra); color: #fff; }
.btn-outline  { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #ffffff44; font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; display: flex; flex-direction: column;
  align-items: center; gap: 6px; animation: fadeUp 1s ease 0.8s both;
}
.scroll-arrow {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, #ffffff44, transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

section { padding: 90px 24px; }
.container { max-width: 960px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2; color: var(--deep); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--terra); }
.divider { width: 48px; height: 3px; background: var(--terra); margin-bottom: 28px; border-radius: 2px; }

#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 680px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

.about-visual {
  background: var(--warm); border-radius: 20px; aspect-ratio: 4/5;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; border: 2px solid #e8d5b8;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px; background: var(--terra); opacity: 0.08; border-radius: 50%;
}
.avatar-emoji { font-size: 4.5rem; line-height: 1; filter: drop-shadow(0 4px 12px #0002); }
.avatar-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--deep); }
.avatar-city { font-size: 0.82rem; color: var(--mid); letter-spacing: 0.1em; display: flex; align-items: center; gap: 5px; }

.about-text p { font-size: 1.05rem; line-height: 1.8; color: #4a3520; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

.quote-block {
  margin-top: 26px; padding: 18px 22px;
  border-left: 3px solid var(--terra); background: var(--warm);
  border-radius: 0 10px 10px 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.1rem; color: var(--mid);
}

#mission { background: var(--deep); color: var(--cream); }
#mission .section-title { color: var(--cream); }
#mission .section-title em { color: var(--accent); }
#mission .section-label { color: var(--accent); }
#mission .divider { background: var(--accent); }

.mission-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-top: 40px;
}
.mission-card {
  background: #3a2510; border-radius: 16px; padding: 30px 24px;
  border: 1px solid #5a3a20; transition: transform 0.25s, border-color 0.25s;
}
.mission-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--accent); margin-bottom: 10px; }
.card-text { font-size: 0.95rem; line-height: 1.7; color: #c4a882; }

#how { background: var(--warm); }
.steps { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 24px; align-items: start; padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step-line { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 52px; height: 52px; background: var(--terra); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.step-connector {
  width: 2px; flex: 1; min-height: 30px;
  background: linear-gradient(to bottom, var(--terra), #e8d5b800); margin-top: 6px;
}
.step:last-child .step-connector { display: none; }
.step-body { padding-top: 10px; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--deep); margin-bottom: 8px; }
.step-desc { font-size: 0.97rem; line-height: 1.75; color: #5a3a20; }

#flyers { background: var(--cream); }
.flyers-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 36px; align-items: start;
}
@media (max-width: 600px) { .flyers-grid { grid-template-columns: 1fr; } }
.flyer-card {
  background: var(--warm); border-radius: 16px; padding: 28px;
  border: 1.5px dashed #d4b896;
}
.flyer-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--deep); margin-bottom: 10px; }
.flyer-card p { font-size: 0.93rem; line-height: 1.7; color: #6a4828; }
.flyer-badge {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px;
}

.free-banner { background: var(--terra); color: #fff; padding: 60px 24px; text-align: center; }
.free-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.free-banner p { font-size: 1.05rem; max-width: 520px; margin: 0 auto 24px; opacity: 0.9; line-height: 1.65; }
.btn-white { background: #fff; color: var(--terra); font-weight: 600; }

#contact { background: var(--deep); color: var(--cream); }
#contact .section-label { color: var(--accent); }
#contact .section-title { color: var(--cream); }
#contact .section-title em { color: var(--accent); }
#contact .divider { background: var(--accent); }

.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; align-items: center; gap: 14px; font-size: 1rem; color: #c4a882; }
.contact-icon {
  width: 44px; height: 44px; background: #3a2510; border: 1px solid #5a3a20;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

footer {
  background: #1a0e05; color: #7a5a3a; text-align: center;
  padding: 28px 24px; font-size: 0.82rem; line-height: 1.7;
}
footer span { color: var(--accent); }
