:root {
  --rose: #e8455a;
  --blush: #f9dde2;
  --petal: #fdf0f2;
  --leaf: #3a6b4c;
  --sage: #c8dece;
  --cream: #fdf7f0;
  --text: #2a1f1f;
  --muted: #7a6060;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

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

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(253,247,240,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,69,90,0.12);
}

.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--rose); font-weight: 700;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: .9rem; font-weight: 500; letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--rose); }

.nav-cta {
  background: var(--rose); color: #fff;
  border: none; padding: .55rem 1.4rem; border-radius: 2rem;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  font-weight: 500; cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none;
}
.nav-cta:hover { background: #c73349; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none; flex-direction: column; gap: 1.2rem; padding: 1.5rem 2rem;
  background: var(--white); border-bottom: 1px solid var(--blush);
  position: fixed; top: 65px; left: 0; right: 0; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text);
  font-size: 1rem; font-weight: 500;
}

footer {
  background: var(--text); color: #c0a8a8;
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--rose); margin-bottom: .6rem;
}
.footer-brand img { height: 36px; width: auto; }
.footer-desc { font-size: .85rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-contact { font-size: .85rem; line-height: 1.8; }
.footer-contact a { color: var(--rose); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col h4 {
  color: white; font-size: .9rem; margin-bottom: .8rem; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a {
  color: #c0a8a8; text-decoration: none; font-size: .85rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--rose); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid #3d2e2e; padding-top: 1.2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .5rem; font-size: .8rem;
}
.footer-bottom a { color: var(--rose); text-decoration: none; }

/* Legal pages */
.legal-page {
  padding: 7rem 2rem 4rem;
  min-height: 100vh;
}
.legal-inner { max-width: 860px; margin: 0 auto; }
.legal-header {
  background: var(--rose); color: white;
  padding: 1.5rem 2rem; border-radius: 1.5rem 1.5rem 0 0;
}
.legal-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .3rem;
}
.legal-header p { font-size: .85rem; opacity: .85; }
.legal-body {
  background: var(--white);
  border: 1px solid var(--blush);
  border-top: none;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 2rem;
}
.legal-section { margin-bottom: 2rem; }
.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--rose); margin-bottom: .6rem;
  padding-bottom: .4rem; border-bottom: 1px solid var(--blush);
}
.legal-section p, .legal-section li {
  font-size: .88rem; color: #4a3535; line-height: 1.75;
}
.legal-section ul { padding-left: 1.4rem; margin-top: .4rem; }
.legal-section li { margin-bottom: .3rem; }
.legal-section a { color: var(--rose); }
.legal-back {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--rose); text-decoration: none; font-size: .9rem;
  font-weight: 500; margin-bottom: 1.5rem;
}
.legal-back:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
