:root {
  --bg: #fff7f9;
  --paper: #ffffff;
  --ink: #573241;
  --muted: #846170;
  --line: #ead6de;
  --accent: #d982a1;
  --accent-dark: #a55473;
  --soft: #fff0f5;
  --shadow: 0 18px 48px rgba(86, 48, 65, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg), #fff);
}

a {
  color: var(--accent-dark);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(234, 214, 222, 0.76);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav a.active {
  color: white;
  background: var(--accent);
}

.hero {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(48px, 7vw, 90px) clamp(18px, 7vw, 94px);
  overflow: hidden;
}

.hero.compact {
  min-height: 330px;
}

.hero h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: 310px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--paper);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
}

.hero-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 900;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: -42px auto 0;
  padding: 0 18px;
}

.quick-card,
.panel,
.faq details {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-card {
  display: block;
  padding: 26px;
  text-decoration: none;
}

.quick-card h2,
.panel h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--ink);
}

.quick-card p,
.panel p,
.faq p,
.faq li {
  color: var(--muted);
  line-height: 1.55;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 18px 86px;
}

.notice {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  line-height: 1.5;
}

.search {
  margin: 0 0 24px;
}

.search input {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  color: var(--ink);
  background: white;
}

.section-head {
  margin: 50px 0 18px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  overflow: hidden;
}

.faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
}

.faq details[open] summary::after {
  content: "-";
}

.answer {
  padding: 0 22px 22px;
}

.answer ul,
.answer ol {
  padding-left: 22px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.button.secondary {
  background: white;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel {
  padding: 22px;
}

.footer {
  padding: 34px 18px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: white;
}

mark {
  background: #ffe1ec;
  color: var(--ink);
  border-radius: 4px;
  padding: 0 3px;
}

@media (max-width: 780px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .quick-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    margin-top: 0;
  }

  .hero-card {
    min-height: 240px;
  }
}
