/* Brolly, UK dating. v1 */
:root {
  --ink: #241c2a;
  --ink-soft: #5b5065;
  --paper: #fffaf4;
  --card: #ffffff;
  --brand: #c1392b;
  --brand-dark: #97281d;
  --brand-tint: #fdeee9;
  --gold: #d99a2b;
  --green: #2f6f5e;
  --line: rgba(36, 28, 42, 0.12);
  --shadow: 0 10px 30px rgba(36, 28, 42, 0.08);
  --radius: 16px;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
a { color: var(--brand-dark); }

.wrap { width: min(1080px, 92vw); margin: 0 auto; }
.narrow { width: min(720px, 92vw); margin: 0 auto; }

/* header */
.site-head {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 30;
}
.site-head .wrap { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.logo { display: flex; align-items: center; gap: .55rem; font-family: var(--serif); font-size: 1.4rem; color: var(--ink); text-decoration: none; font-weight: 600; }
.logo svg { width: 28px; height: 28px; flex: none; }
.nav { margin-left: auto; display: flex; align-items: center; gap: .3rem; flex-wrap: wrap; }
.nav a { color: var(--ink-soft); text-decoration: none; padding: .4rem .6rem; border-radius: 9px; font-size: .95rem; }
.nav a:hover { background: var(--brand-tint); color: var(--brand-dark); }
.nav a.active { color: var(--ink); font-weight: 600; }
.pip { display: inline-block; min-width: 1.35em; padding: 0 .35em; margin-left: .25em; background: var(--brand); color: #fff; border-radius: 999px; font-size: .72rem; line-height: 1.45em; text-align: center; vertical-align: middle; }

/* buttons */
.btn, button.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  background: var(--brand); color: #fff; padding: .72rem 1.25rem;
  border-radius: 999px; font: inherit; font-weight: 600; font-size: .98rem;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--brand-dark); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn.ghost:hover { background: #fff; border-color: var(--ink-soft); }
.btn.small { padding: .45rem .9rem; font-size: .88rem; }
.btn.wide { width: 100%; text-align: center; }
.btn.quiet { background: transparent; color: var(--ink-soft); padding: .45rem 0; text-decoration: underline; font-weight: 400; }
.btn.quiet:hover { background: transparent; color: var(--brand-dark); }

/* hero */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 2.5rem; background:
  radial-gradient(900px 420px at 12% -10%, #ffe9df 0%, rgba(255,233,223,0) 60%),
  radial-gradient(700px 380px at 95% 0%, #e7f0ec 0%, rgba(231,240,236,0) 60%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; font-weight: 700; color: var(--brand-dark); margin-bottom: .8rem; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 34em; }
.cta-row { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.4rem; align-items: center; }
.cta-note { font-size: .9rem; color: var(--ink-soft); margin: .9rem 0 0; }

.card-stack { position: relative; }
.peek {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem; display: flex; gap: .9rem; align-items: center; margin-bottom: .8rem;
  border: 1px solid var(--line);
}
.peek:nth-child(2) { transform: translateX(1.6rem); }
.peek:nth-child(3) { transform: translateX(.7rem); }
.peek img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex: none; }
.peek b { display: block; font-family: var(--serif); font-size: 1.05rem; }
.peek span { font-size: .88rem; color: var(--ink-soft); }

/* sections */
section { padding: 3rem 0; }
.section-head { max-width: 40em; margin-bottom: 1.8rem; }
.section-head p { color: var(--ink-soft); }
.grid { display: grid; gap: 1.2rem; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }

.tile { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.tile .num { font-family: var(--serif); font-size: 1.6rem; color: var(--brand); display: block; margin-bottom: .3rem; }
.tile p:last-child { margin-bottom: 0; }
.tile.soft { background: var(--brand-tint); border-color: transparent; }

.areas { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .35rem .85rem; font-size: .9rem; color: var(--ink-soft); }
.chip.on { background: var(--brand); border-color: var(--brand); color: #fff; }

/* profile cards */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.2rem; }
.person { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; display: block; transition: transform .15s ease, box-shadow .15s ease; }
.person:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.person .shot { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; display: block; background: var(--brand-tint); }
.person .body { padding: .9rem 1rem 1.1rem; }
.person .name { font-family: var(--serif); font-size: 1.15rem; margin: 0 0 .15rem; }
.person .where { font-size: .88rem; color: var(--ink-soft); margin: 0 0 .5rem; }
.person .line { font-size: .93rem; margin: 0; }
.badge { display: inline-block; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; padding: .12rem .5rem; border-radius: 999px; background: var(--brand-tint); color: var(--brand-dark); vertical-align: middle; }
.badge.gold { background: #fbf0d8; color: #8a6210; }
.badge.green { background: #e4f0ea; color: var(--green); }

/* forms */
form .field { margin-bottom: 1.1rem; }
label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.hint { font-weight: 400; color: var(--ink-soft); font-size: .86rem; }
input[type=text], input[type=email], input[type=password], input[type=number], select, textarea {
  width: 100%; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: transparent; }
textarea { min-height: 7rem; resize: vertical; }
.row { display: flex; gap: 1rem; flex-wrap: wrap; }
.row > * { flex: 1 1 200px; }
.checks { display: flex; flex-wrap: wrap; gap: .5rem; }
.checks label { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: .35rem .8rem; font-weight: 400; font-size: .9rem; margin: 0; cursor: pointer; }
.checks input { accent-color: var(--brand); }
.tick { display: flex; gap: .55rem; align-items: flex-start; font-weight: 400; font-size: .92rem; }
.tick input { margin-top: .3rem; accent-color: var(--brand); }

.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow); }
.notice { border-radius: 12px; padding: .8rem 1rem; margin-bottom: 1.2rem; font-size: .95rem; }
.notice.good { background: #e4f0ea; color: #1f5646; }
.notice.bad { background: #fdeee9; color: var(--brand-dark); }
.notice ul { margin: .3rem 0 0; padding-left: 1.1rem; }

/* filters */
.filters { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; margin-bottom: 1.6rem; }
.filters .row > * { flex: 1 1 140px; }
.filters .go { flex: 0 0 auto; align-self: end; }

/* messages */
.thread { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.msg { max-width: 75%; padding: .65rem .95rem; border-radius: 16px; background: #fff; border: 1px solid var(--line); white-space: pre-wrap; }
.msg.mine { align-self: flex-end; background: var(--brand); color: #fff; border-color: transparent; }
.msg time { display: block; font-size: .73rem; opacity: .7; margin-top: .25rem; }

.stack { display: flex; flex-direction: column; gap: 1rem; }
.line-item { display: flex; gap: 1rem; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; text-decoration: none; color: inherit; }
.line-item:hover { box-shadow: var(--shadow); }
.line-item img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; flex: none; }
.line-item .grow { flex: 1; min-width: 0; }
.line-item .grow p { margin: 0; font-size: .9rem; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; align-items: start; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.plan.feature { border: 2px solid var(--brand); box-shadow: var(--shadow); }
.plan .price { font-family: var(--serif); font-size: 2.6rem; line-height: 1; margin: .3rem 0; }
.plan .price small { font-size: .95rem; font-family: var(--sans); color: var(--ink-soft); }
.ticks { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.ticks li { padding-left: 1.6rem; position: relative; margin-bottom: .5rem; font-size: .95rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* faq */
details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: .7rem; }
details summary { cursor: pointer; font-weight: 600; font-family: var(--serif); font-size: 1.05rem; }
details[open] summary { margin-bottom: .6rem; }
details p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { text-align: left; padding: .55rem .5rem; border-bottom: 1px solid var(--line); vertical-align: top; }

/* footer */
.site-foot { background: #221a28; color: #cfc6d2; margin-top: 3rem; padding: 2.5rem 0 2rem; }
.site-foot a { color: #fff; text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.foot-grid h4 { font-family: var(--serif); color: #fff; margin: 0 0 .6rem; font-size: 1rem; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: .35rem; font-size: .93rem; }
.small-print { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2rem; padding-top: 1.2rem; font-size: .83rem; color: #9e93a5; }

@media (max-width: 860px) {
  .hero-grid, .g3, .g4, .g2, .plans, .foot-grid { grid-template-columns: 1fr; }
  .card-stack { display: none; }
  .nav a { padding: .35rem .45rem; font-size: .9rem; }
}
