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

:root {
  --cream: #fdf8f0;
  --brown: #6b3f1f;
  --brown-light: #9c6a3a;
  --brown-dark: #3d1f08;
  --gold: #d4943a;
  --text: #2c1a0e;
  --text-muted: #7a5c3f;
  --white: #ffffff;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(107, 63, 31, 0.12);
  backdrop-filter: blur(8px);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
}

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

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

.nav-links a:hover { color: var(--brown); }

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(160deg, var(--cream) 0%, #f5e8d0 100%);
}

.hero-content { max-width: 640px; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107, 63, 31, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 63, 31, 0.4);
}

/* Sections */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: #f0e4cf;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.container h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(107, 63, 31, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 63, 31, 0.14);
}

.card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(107, 63, 31, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 600px) {
  .nav { padding: 1rem; }
  .nav-links { gap: 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
}
