
:root {
  --pink:#e96f8d;
  --soft-pink:#fff2f5;
  --rose:#b86b64;
  --gold:#c99b4d;
  --ink:#171717;
  --cream:#fffaf8;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.homepage-wrap {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  background: #fff;
}

.homepage-design {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 10px;
  z-index: 5;
}

.hotspot:hover {
  background: rgba(255,255,255,.12);
  outline: 1px solid rgba(233,111,141,.35);
}

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 50;
  border: 0;
  background: var(--pink);
  color: white;
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 45;
  background: rgba(255,250,248,.98);
  padding: 65px 22px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.mobile-nav.open {
  display: grid;
  gap: 14px;
}

.mobile-nav a {
  padding: 12px 14px;
  border: 1px solid #f3c9d3;
  border-radius: 12px;
  font-weight: 700;
}

.inner-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(233,111,141,.18), transparent 35%),
    linear-gradient(180deg, #fff5f7, #fff);
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 34px;
  font-family: Georgia, serif;
  color: #8a433e;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.page-hero {
  max-width: 980px;
  margin: 55px auto;
  padding: 55px 28px;
  text-align: center;
  border: 1px solid #f1cbd2;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 55px rgba(181,91,111,.14);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.7;
  font-size: 18px;
}

.button {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(233,111,141,.25);
}

.content-grid {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid #f2d4da;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(181,91,111,.08);
}

.card h3 {
  margin-top: 0;
  color: #9a4d58;
}

.footer-note {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 50px;
  text-align: center;
  color: #6f4f55;
}

@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: block;
  }
  .site-header {
    display: block;
    text-align: center;
  }
  .site-nav {
    display: none;
  }
  .hotspot {
    display: none;
  }
}
