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

:root {
  --cream: #FFF8ED;
  --cream-dark: #F7EFE4;
  --butter: #F2D58A;
  --apricot: #E8B08D;
  --terracotta: #B86A52;
  --tomato: #C65446;
  --rosewood: #7A4A49;
  --ink: #2F2A2A;
  --ink-soft: #4A4040;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,248,237,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,106,82,0.12);
  padding: 0 5vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--tomato);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--tomato); }

.nav-cta {
  background: var(--tomato) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--rosewood) !important; }

.btn-primary {
  background: var(--tomato);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--rosewood);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink-soft);
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(184,106,82,0.28);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* section-label is 1.7rem everywhere, no exceptions */
.section-label {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title em {
  font-style: italic;
  color: var(--tomato);
}

.section-body {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.doodle-divider {
  text-align: center;
  padding: 1.5rem 0;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--apricot);
  letter-spacing: 0.2em;
  opacity: 0.55;
}

/* newsletter */
.section-newsletter {
  background: var(--cream-dark);
  padding: 100px 5vw;
  text-align: center;
}

.newsletter-inner {
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto 1rem;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid rgba(184,106,82,0.22);
  border-radius: 100px;
  background: white;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input[type="email"]:focus { border-color: var(--terracotta); }
.newsletter-form input[type="email"]::placeholder { color: rgba(47,42,42,0.35); }

.newsletter-note {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0.6;
}

footer {
  background: var(--ink);
  color: rgba(255,248,237,0.65);
  padding: 60px 5vw 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.875rem; line-height: 1.65; max-width: 280px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(255,248,237,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--apricot); }

.footer-bottom {
  border-top: 1px solid rgba(255,248,237,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; opacity: 0.45; }

.footer-handwritten {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--apricot);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gentleFloat {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50%       { transform: rotate(-1deg) translateY(-5px); }
}

@keyframes gentleFloat2 {
  0%, 100% { transform: rotate(0.5deg) translateY(0); }
  50%       { transform: rotate(0.5deg) translateY(-7px); }
}

@keyframes gentleFloat3 {
  0%, 100% { transform: rotate(-0.5deg) translateY(0); }
  50%       { transform: rotate(-0.5deg) translateY(-4px); }
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .newsletter-form { flex-direction: column; }
}
