*{ 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;
}

a{ color:inherit; }
.container{ width:min(1100px, calc(100% - 32px)); margin-inline:auto; }

/* 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:.30; }

@media (max-width:700px){
  .orn{ width:240px; height:240px; opacity:.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; }

/* 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: 72ch;
  line-height: 1.55;
}

/* layout */
.layout{
  display:grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 14px;
  align-items: start;
}
@media (max-width:900px){
  .layout{ grid-template-columns: 1fr; }
}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.cardTitle{
  margin: 0 0 12px;
  font-size: 20px;
  display:flex;
  gap:10px;
  align-items:center;
}
.cardTitle::after{
  content:"";
  height:1px;
  flex:1;
  background: rgba(20,15,24,0.16);
  opacity: .7;
}

.infoRow{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20,15,24,0.10);
}
.infoRow:last-of-type{ border-bottom: none; }
.label{ color: var(--ink-soft); font-size: 13px; }
.value{ font-weight: 800; }
.link{
  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); }

.divider{
  height:1px;
  background: rgba(20,15,24,0.14);
  margin: 12px 0;
}
.muted{ margin:0; color: var(--ink-soft); line-height: 1.55; }

.chips{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 12px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,15,24,0.16);
  background: rgba(255,255,255,0.42);
  font-size: 13px;
  font-weight: 800;
  opacity: .92;
}

/* form */
.formCard{ box-shadow: var(--shadow); }
.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width:700px){
  .grid{ grid-template-columns: 1fr; }
}
.field{ display:grid; gap: 6px; }
.field--full{ grid-column: 1 / -1; }

.field__label{
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 800;
}

input, select, textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(20,15,24,0.18);
  background: rgba(255,255,255,0.55);
  padding: 12px 12px;
  font: inherit;
  box-shadow: 0 10px 24px rgba(20,15,24,0.10);
  outline: none;
}
textarea{ resize: vertical; min-height: 140px; }

input:focus, select:focus, textarea:focus{
  border-color: rgba(20,15,24,0.35);
  box-shadow: 0 12px 30px rgba(20,15,24,0.16);
}

.actions{
  display:flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btnPrimary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(20,15,24,0.90);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btnPrimary:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }

.fineprint{
  margin:0;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.4;
}

.status{
  margin: 10px 0 0;
  color: rgba(20,15,24,0.85);
  font-weight: 700;
}

/* 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:.9; }
.footer__links a:hover{ text-decoration: underline; opacity:1; }
