/* ========== BASE ========== */
* { box-sizing: border-box; }
html, body { height: 100%; }

:root{
  --ink: #140f18;
  --ink-soft: rgba(20, 15, 24, 0.72);
  --card: rgba(255, 255, 255, 0.55);
  --card2: rgba(255, 255, 255, 0.40);
  --stroke: rgba(20, 15, 24, 0.18);
  --shadow: 0 18px 50px rgba(20, 15, 24, 0.22);
  --shadow-soft: 0 10px 30px rgba(20, 15, 24, 0.16);
  --radius: 22px;
}

body{
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 50% 20%, #f6d9ea 0%, #e8b9d2 35%, #d49abb 70%, #c68bb0 100%);
  overflow-x: hidden;
}

.container{
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

a{ color: inherit; }

/* ========== ORNAMENTS ========== */
.orn{
  position: fixed;
  width: 340px;
  height: 340px;
  pointer-events: none;
  opacity: 0.35;
  filter: drop-shadow(0 12px 18px rgba(20,15,24,0.18));
  background:
    radial-gradient(circle at 30% 30%, rgba(20,15,24,0.55) 0 6px, transparent 7px),
    radial-gradient(circle at 62% 40%, rgba(20,15,24,0.55) 0 4px, transparent 5px),
    conic-gradient(from 90deg, rgba(20,15,24,0.0), rgba(20,15,24,0.55), rgba(20,15,24,0.0));
  border-radius: 999px;
  mask:
    radial-gradient(circle at 30% 30%, #0000 0 20px, #000 21px 100%),
    radial-gradient(circle at 55% 55%, #0000 0 85px, #000 86px 100%),
    radial-gradient(circle at 50% 50%, #000 0 100%);
}
.orn--tl{ top: -140px; left: -140px; transform: rotate(-25deg); }
.orn--br{ bottom: -150px; right: -150px; transform: rotate(155deg); opacity: 0.30; }

@media (max-width: 700px){
  .orn{ width: 240px; height: 240px; opacity: 0.24; }
  .orn--tl{ top: -110px; left: -110px; }
  .orn--br{ bottom: -120px; right: -120px; }
}

/* ========== TOP ========== */
.top{
  display: grid;
  place-items: center;
  padding: 28px 0 10px;
  gap: 12px;
}

.logoLink{ display: inline-grid; place-items: center; text-decoration: none; }
.logo{
  width: min(720px, 92vw);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(20,15,24,0.22));
}

.nav{
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(20,15,24,0.14);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: var(--shadow-soft);
}
.nav a{ text-decoration: none; }
.nav a:hover{ text-decoration: underline; }

.btn{
  border: 1px solid rgba(20,15,24,0.20);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(20,15,24,0.88);
  color: #fff;
  text-decoration: none !important;
}

/* ========== TITLES ========== */
.pageTitle{
  margin: 18px 0 6px;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.2px;
}
.pageSub{
  margin: 0 auto 18px;
  text-align: center;
  color: var(--ink-soft);
  max-width: 78ch;
  line-height: 1.55;
}

/* ========== SECTIONS ========== */
.section{
  margin: 16px 0 22px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(20,15,24,0.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.sectionTitle{
  margin: 0 0 10px;
  font-size: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sectionTitle::after{
  content:"";
  height: 1px;
  flex: 1;
  background: rgba(20,15,24,0.16);
  opacity: 0.7;
}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.p{
  margin: 0 0 10px;
  line-height: 1.6;
}
.p:last-child{ margin-bottom: 0; }

.muted{
  color: var(--ink-soft);
  font-size: 0.98em;
}

.link{
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(20,15,24,0.25);
  padding-bottom: 2px;
}
.link:hover{ border-bottom-color: rgba(20,15,24,0.65); }

.list{
  margin: 10px 0 12px;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.list strong{ color: var(--ink); }

/* ========== FOOTER ========== */
.footer{
  margin-top: 26px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(20,15,24,0.12);
  background: linear-gradient(to top, rgba(246,217,234,0.65), rgba(246,217,234,0.0));
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(20,15,24,0.78);
  font-size: 13px;
}
.footer__links{
  display: flex;
  gap: 12px;
}
.footer__links a{
  text-decoration: none;
  opacity: 0.9;
}
.footer__links a:hover{
  opacity: 1;
  text-decoration: underline;
}
