:root {
  --ink: #231f20;
  --muted: #6e5f66;
  --brand: #7a2946;
  --brand-2: #c9879d;
  --rose: #fff3f7;
  --cream: #fffaf6;
  --line: #ead8df;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(122, 41, 70, 0.12);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--cream), #ffffff 40%, var(--rose));
  line-height: 1.6;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

.topbar {
  background: var(--brand);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.92rem;
}

.topbar a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 25% 20%, var(--brand-2), var(--brand));
  font-family: Georgia, serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

.nav a:hover,
.nav a:focus { background: var(--rose); color: var(--brand); }

.hero {
  padding: 5.2rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, h3 { line-height: 1.06; margin: 0 0 1rem; color: var(--ink); }

h1 {
  margin-top: 1rem;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  letter-spacing: -0.065em;
}

h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-family: Georgia, serif; letter-spacing: -0.045em; }

h3 { font-size: 1.35rem; }

.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 760px; }

.actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  text-decoration: none;
  font-weight: 900;
  background: var(--brand);
  color: #fff;
  min-height: 48px;
}

.button.secondary { background: #fff; color: var(--brand); }

.panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.hero-card {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 135, 157, 0.42), transparent 28%),
    linear-gradient(135deg, #fff, var(--rose));
}

.gown-shape {
  width: min(330px, 70%);
  aspect-ratio: 0.72;
  margin: 1rem auto;
  border-radius: 47% 47% 18% 18%;
  background: linear-gradient(150deg, #fff, #f7d6e2 55%, #fff);
  border: 1px solid #ead1da;
  box-shadow: inset 0 0 50px rgba(122, 41, 70, 0.08), var(--shadow);
  position: relative;
}

.gown-shape:before {
  content: "";
  position: absolute;
  top: -48px;
  left: 50%;
  width: 140px;
  height: 105px;
  transform: translateX(-50%);
  border-radius: 50% 50% 20px 20px;
  background: #fff;
  border: 1px solid #ead1da;
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 1rem; }

.stat { padding: 1rem; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.stat strong { display: block; color: var(--brand); font-size: 1.5rem; line-height: 1; }
.stat span { color: var(--muted); font-size: 0.84rem; font-weight: 700; }

.section { padding: 3.2rem 0; }
.section-header { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1.4rem; }
.section-header p { color: var(--muted); max-width: 620px; margin: 0; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 10px 30px rgba(122, 41, 70, 0.08);
}

.card p { color: var(--muted); margin: 0.4rem 0 0; }
.card a { color: var(--brand); font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.news-list { display: grid; gap: 0.75rem; }
.news-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
}
.news-item time { color: var(--brand); font-weight: 900; font-size: 0.9rem; }
.news-item strong { display: block; margin-bottom: 0.25rem; }
.news-item span { color: var(--muted); }

.form-grid { display: grid; gap: 0.85rem; }
label { font-weight: 900; color: var(--brand); }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 1rem;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
[data-fs-success], [data-fs-error] { display: none; padding: 0.8rem 1rem; border-radius: 16px; margin-bottom: 1rem; }
[data-fs-success] { background: #ecfff2; color: #176c2d; }
[data-fs-error] { background: #fff0f0; color: #8b1a1a; }

.share-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }
.share-row a { border: 1px solid var(--line); border-radius: 999px; padding: 0.65rem 0.85rem; text-decoration: none; background: #fff; font-weight: 900; color: var(--brand); }

.footer { border-top: 1px solid var(--line); padding: 2rem 0; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; align-items: start; }
.footer a { color: var(--brand); font-weight: 800; }

.article { max-width: 820px; }
.article p, .article li { color: var(--muted); font-size: 1.05rem; }
.article ul { padding-left: 1.2rem; }

@media (max-width: 860px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero-grid, .grid, .grid.two, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .hero-card { min-height: 360px; }
  .section-header { display: block; }
}

@media (max-width: 560px) {
  .header-inner, .container { width: min(100% - 22px, 1120px); }
  .nav a { padding: 0.45rem 0.55rem; font-size: 0.86rem; }
  .stat-row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
  .topbar { font-size: 0.82rem; }
}