/* Sakina Care — "Sage Sanctuary" design system.
   Sakina is tranquility: a quiet garden courtyard. Soft sage paper, deep
   botanical green, arch silhouettes, unhurried Marcellus display over a
   soft humanist body (Mulish). Light, calm, dignified.
   (Variable names kept from the dusk theme — --night is now the light page
   ground, --moon the dark text, --amber the deep sage accent.) */

@font-face {
  font-family: 'Marcellus';
  src: url('/fonts/marcellus.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('/fonts/mulish-var.woff2') format('woff2-variations');
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --night: #eff2e9;
  --night-deep: #e5ebd9;
  --raised: #f9faf5;
  --raised-2: #ffffff;
  --well: #ffffff;

  --moon: #232b24;
  --body: #3c4a3e;
  --dim: #5f705f;

  --line: rgba(71, 102, 63, 0.28);
  --line-soft: rgba(45, 62, 44, 0.13);

  --amber: #47663f;
  --amber-bright: #35502f;
  --amber-deep: #47663f;
  --amber-tint: rgba(101, 133, 84, 0.14);
  --rose: #8f5b46;
  --rose-tint: rgba(143, 91, 70, 0.12);

  --danger: #9c3d2a;
  --danger-tint: rgba(156, 61, 42, 0.11);
  --ok-deep: #2f5c2b;
  --ok-tint: rgba(90, 140, 80, 0.16);

  /* Aliases kept for any straggling references. */
  --paper: var(--night);
  --card: var(--raised);
  --ink: var(--moon);
  --ink-soft: var(--body);
  --muted: var(--dim);
  --pine: var(--amber);
  --pine-deep: var(--amber-bright);
  --gold: var(--amber);
  --gold-deep: var(--amber);
  --gold-tint: var(--amber-tint);

  --serif: 'Marcellus', 'Times New Roman', serif;
  --sans: 'Mulish', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --r: 18px;
  --r-sm: 12px;
  --shadow: 0 1px 2px rgba(35, 43, 36, 0.05), 0 14px 30px -18px rgba(35, 43, 36, 0.22);
  --shadow-lift: 0 2px 4px rgba(35, 43, 36, 0.06), 0 24px 52px -22px rgba(35, 43, 36, 0.3);
  --glow: 0 0 40px rgba(101, 133, 84, 0.16);
  --wrap: 1120px;

  /* A pointed-arch outline, drawn faint — the sanctuary doorway. */
  --arch-lines: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='430' viewBox='0 0 340 430'%3E%3Cg fill='none' stroke='%2347663f' stroke-width='1.4'%3E%3Cpath d='M30 430 V180 C30 90 92 32 170 32 C248 32 310 90 310 180 V430' stroke-opacity='.2'/%3E%3Cpath d='M58 430 V190 C58 112 106 62 170 62 C234 62 282 112 282 190 V430' stroke-opacity='.1'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
::selection { background: var(--amber); color: #ffffff; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--moon);
  margin: 0 0 0.5em;
  letter-spacing: 0.012em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
a { color: var(--amber); text-underline-offset: 3px; }
a:hover { color: var(--amber-bright); }
img { max-width: 100%; }
dl, dd, figure { margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow-wrap { max-width: 640px; padding-top: 48px; padding-bottom: 80px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--amber); color: var(--night-deep); padding: 8px 16px; border-radius: 999px;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 8px; }

/* ---------- masthead: centered, ceremonial ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--night-deep) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.mast {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; padding: 16px 20px 12px;
}
.mast .logo { justify-self: center; }
.mast-side { display: flex; align-items: center; gap: 12px; }
.mast-side-start { justify-self: start; }
.mast-side-end { justify-self: end; }
.mast-link {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--dim); text-decoration: none; padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
.mast-link:hover { color: var(--amber-bright); border-bottom-color: var(--amber); }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--amber); }
.logo-mark { width: 32px; height: 32px; }
.logo-word {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0.04em; color: var(--moon);
}
.logo-word em { font-style: normal; color: var(--amber); }

/* The nav row: a thin, ruled line of small caps under the centered wordmark. */
.site-nav {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  border-top: 1px solid var(--line-soft);
  padding: 0 20px;
}
.site-nav > a {
  text-decoration: none; color: var(--dim);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 11px 18px 9px; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.site-nav > a:hover { color: var(--moon); }
.site-nav > a.active { color: var(--amber-bright); border-bottom-color: var(--amber); }
.nav-extra { display: none; }

.nav-toggle { display: none; background: none; border: 0; padding: 10px 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--moon); margin: 4px 0; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 0.94rem; font-weight: 700; text-decoration: none;
  padding: 10px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--amber); color: #ffffff; }
.btn-solid:hover { background: var(--amber-bright); color: #ffffff; }
.btn-gold { background: linear-gradient(120deg, #47663f 20%, #7d9a6b); color: #ffffff; }
.btn-gold:hover { background: linear-gradient(120deg, #35502f 20%, #6f8c5e); color: #ffffff; }
.btn-ghost { color: var(--body); }
.btn-ghost:hover { background: var(--raised); color: var(--moon); }
.btn-line { border-color: var(--line); color: var(--amber); background: transparent; }
.btn-line:hover { border-color: var(--amber); background: var(--amber-tint); color: var(--amber-bright); }
.btn-danger { border-color: color-mix(in srgb, var(--danger) 50%, transparent); color: var(--danger); background: none; }
.btn-danger:hover { background: var(--danger-tint); }
.btn-lg { padding: 14px 28px; font-size: 1.02rem; }
.btn-sm { padding: 6px 14px; font-size: 0.86rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background:
    var(--arch-lines) no-repeat top -30px center,
    radial-gradient(52rem 30rem at 50% -8rem, rgba(101, 133, 84, 0.18), transparent 62%),
    radial-gradient(40rem 26rem at 82% 108%, rgba(143, 91, 70, 0.07), transparent 60%),
    var(--night);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 44px; padding: 84px 0 88px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.hero-kicker::before, .hero-kicker::after { content: '✦'; font-size: 0.7rem; color: var(--amber); }
.hero h1 { max-width: 17em; margin-inline: auto; margin-bottom: 0.5em; font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
.hero-sub { font-size: 1.14rem; color: var(--body); max-width: 38em; margin-inline: auto; margin-bottom: 0; }

.hero-panel {
  width: 100%; max-width: 540px; margin-inline: auto; text-align: left;
  background: linear-gradient(180deg, var(--raised-2), var(--raised) 40%);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-lift), var(--glow);
  padding: 30px 30px 24px;
  position: relative;
}
.hero-panel::before {
  content: '✦'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--night); color: var(--amber); padding: 0 14px; font-size: 0.85rem;
}
.hero-panel h2 { font-size: 1.35rem; margin-bottom: 4px; }
.hero-panel .panel-sub { font-size: 0.92rem; color: var(--dim); margin-bottom: 20px; }
.hero-panel .field { margin-bottom: 14px; }
.hero-alt { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 0.92rem; color: var(--dim); }

/* ---------- forms ---------- */

.field { margin-bottom: 18px; }
.field > label { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; color: var(--moon); }
.field .hint { font-size: 0.84rem; color: var(--dim); margin-top: 5px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; font: inherit; color: var(--moon);
  background: var(--well); border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  padding: 11px 14px;
}
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--dim) 70%, transparent); }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(71, 102, 63, 0.22);
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23a49bc6' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; }

.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 4px 16px; }
.check-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.94rem; padding: 6px 2px; }
.check-item input { margin-top: 3px; accent-color: var(--amber); width: 16px; height: 16px; flex: none; }

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-block; padding: 8px 18px; border: 1px solid var(--line-soft); border-radius: 999px;
  font-size: 0.92rem; background: var(--well); color: var(--body); cursor: pointer;
}
.radio-pill input:checked + span { background: var(--amber); color: var(--night-deep); border-color: var(--amber); font-weight: 700; }
.radio-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(71, 102, 63, 0.28); }

fieldset { border: 0; padding: 0; margin: 0 0 18px; }
fieldset legend { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; padding: 0; color: var(--moon); }

.form-section { border-top: 1px solid var(--line-soft); margin-top: 28px; padding-top: 24px; }
.form-section > h2 { font-size: 1.3rem; }
.form-section > .section-sub { font-size: 0.92rem; color: var(--dim); margin-top: -6px; margin-bottom: 18px; }

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* ---------- cards & badges ---------- */

.card {
  background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 22px;
}

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

.cg-card { display: flex; flex-direction: column; gap: 12px; position: relative; transition: border-color 0.15s, transform 0.15s; }
.cg-card:hover { border-color: var(--line); }
.cg-card-featured {
  border-color: color-mix(in srgb, var(--amber) 45%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--amber) 7%, var(--raised)), var(--raised) 55%);
  box-shadow: var(--shadow), var(--glow);
}
.sponsored-tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-bright); background: var(--amber-tint); border: 1px solid var(--line);
  padding: 3px 10px; border-radius: 999px;
}
.cg-card-head { display: flex; gap: 14px; align-items: center; padding-right: 78px; }
.cg-name { margin: 0; font-size: 1.2rem; }
.cg-name a { text-decoration: none; color: var(--moon); }
.cg-name a:hover { color: var(--amber-bright); text-decoration: underline; }
.cg-meta { margin: 2px 0 0; font-size: 0.86rem; color: var(--dim); }
.cg-bio { margin: 0; font-size: 0.94rem; color: var(--body); }

.cg-facts { display: flex; flex-direction: column; gap: 4px; font-size: 0.88rem; }
.cg-facts > div { display: flex; gap: 8px; }
.cg-facts dt { flex: none; width: 72px; color: var(--dim); font-weight: 600; }
.cg-facts dd { color: var(--body); }

.cg-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line-soft); }
.stamp { font-size: 0.82rem; color: var(--dim); }

/* Arch-shaped medallion: the doorway silhouette, worn as a portrait. */
.avatar {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  font-family: var(--serif); font-weight: 400; color: hsl(var(--av-h, 100) 38% 28%);
  background: linear-gradient(180deg, hsl(var(--av-h, 100) 42% 92%), hsl(var(--av-h, 100) 36% 85%));
  border: 1px solid hsl(var(--av-h, 100) 32% 62% / 0.5);
  border-radius: 999px 999px 10px 10px;
}
.avatar-sm { width: 48px; height: 52px; font-size: 1rem; }
.avatar-lg { width: 84px; height: 92px; font-size: 1.7rem; border-radius: 999px 999px 14px 14px; }

.badge-row { display: flex; flex-wrap: wrap; gap: 6px; }
.badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600; padding: 4px 12px;
  border-radius: 999px; border: 1px solid var(--line-soft); color: var(--body); background: var(--raised);
}
.badge-faith { background: var(--amber-tint); border-color: var(--line); color: var(--amber-bright); }
.badge-gold { background: var(--rose-tint); border-color: color-mix(in srgb, var(--rose) 35%, transparent); color: var(--rose); }

/* ---------- browse layout ---------- */

.page-head { padding: 48px 0 10px; }
.page-head .crumbs { font-size: 0.86rem; color: var(--dim); margin-bottom: 10px; }
.page-head .crumbs a { color: var(--dim); }
.page-head h1 { margin-bottom: 6px; }
.page-head .lede { color: var(--body); max-width: 46em; font-size: 1.04rem; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: end;
  background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: 16px 18px; margin: 20px 0 24px;
}
.filter-bar .field { margin: 0; flex: 1 1 150px; }
.filter-bar .field > label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); }
.filter-bar .btn { flex: none; }

.browse-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; padding-bottom: 64px; }
.browse-aside { display: flex; flex-direction: column; gap: 14px; }
.browse-main > .card-grid { margin-bottom: 26px; }
.result-count { font-size: 0.9rem; color: var(--dim); margin: 0 0 14px; }

.biz-ad { background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 18px; position: relative; font-size: 0.9rem; }
.biz-ad .sponsored-tag { position: static; float: right; margin-left: 8px; }
.biz-ad h4 { margin: 0 0 2px; font-size: 1.05rem; }
.biz-ad .biz-cat { color: var(--rose); font-size: 0.8rem; font-weight: 700; margin: 0 0 6px; letter-spacing: 0.04em; }
.biz-ad p { margin: 0 0 4px; color: var(--body); }
.biz-phone { font-weight: 700; color: var(--moon); }

.aside-note { font-size: 0.84rem; color: var(--dim); padding: 0 4px; }

/* ---------- profile page ---------- */

.profile-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; padding: 40px 0 76px; align-items: start; }
.profile-head { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; }
.profile-head h1 { margin: 0 0 4px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.profile-body h2 { font-size: 1.3rem; margin-top: 34px; }
.profile-bio { white-space: pre-line; color: var(--body); font-size: 1.02rem; }

.fact-table { display: grid; grid-template-columns: max-content 1fr; gap: 8px 22px; font-size: 0.96rem; margin: 18px 0; }
.fact-table dt { color: var(--dim); font-weight: 600; }
.fact-table dd { color: var(--body); }

.contact-card { position: sticky; top: 92px; }
.contact-card .card { padding: 26px; border-color: var(--line); box-shadow: var(--shadow), var(--glow); }
.contact-card h2 { font-size: 1.2rem; margin-bottom: 6px; }
.contact-card .contact-sub { font-size: 0.9rem; color: var(--dim); margin-bottom: 18px; }
.contact-reveal { background: var(--amber-tint); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; margin-bottom: 12px; font-size: 1.02rem; color: var(--moon); }
.contact-reveal strong { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber-bright); margin-bottom: 2px; }

.credential-box {
  border: 1px dashed var(--line);
  background: var(--amber-tint); border-radius: var(--r-sm); padding: 14px 16px; font-size: 0.94rem; color: var(--body);
}
.credential-box .cred-label { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber-bright); display: block; margin-bottom: 4px; }

.safety-notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--amber-tint); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 15px 17px; font-size: 0.92rem; color: var(--body); margin: 18px 0;
}
.safety-notice strong { color: var(--amber-bright); }
.safety-notice svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--amber); }
.safety-notice a { color: var(--amber-bright); font-weight: 700; }
.safety-notice-compact { margin: 12px 0 0; font-size: 0.86rem; padding: 11px 13px; }

.report-line { font-size: 0.86rem; color: var(--dim); margin-top: 14px; text-align: center; }
.report-line a { color: var(--dim); }

/* ---------- sections ---------- */

.section { padding: 76px 0; }
.section-tight { padding: 52px 0; }
.section-deep {
  background:
    radial-gradient(46rem 24rem at 12% 0%, rgba(101, 133, 84, 0.10), transparent 60%),
    var(--night-deep);
  border-block: 1px solid var(--line-soft);
}
.section-kicker {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}
.section-kicker::before { content: '✦'; font-size: 0.68rem; }
.section h2 { max-width: 24em; }
.section .section-lede { color: var(--body); max-width: 42em; margin-bottom: 38px; }

/* The journey: three steps descending a center line, like lanterns down a path. */
.journey { position: relative; max-width: 880px; margin: 0 auto; padding: 10px 0 4px; }
.journey::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: linear-gradient(180deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.journey-item {
  position: relative; display: grid;
  grid-template-columns: 1fr 96px 1fr; align-items: center;
  margin: 0 0 34px;
}
.journey-item:last-child { margin-bottom: 0; }
.step-num {
  grid-column: 2; justify-self: center;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 54px; border-radius: 999px 999px 8px 8px;
  font-family: var(--serif); font-size: 1.3rem;
  background: var(--night); color: var(--amber-bright); border: 1px solid var(--line);
  box-shadow: var(--glow);
}
.journey-body {
  grid-row: 1; background: var(--raised); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 22px 26px; box-shadow: var(--shadow);
}
.journey-item:nth-child(odd) .journey-body { grid-column: 1; text-align: right; }
.journey-item:nth-child(even) .journey-body { grid-column: 3; text-align: left; }
.journey-body h3 { font-size: 1.18rem; margin-bottom: 6px; }
.journey-body p { font-size: 0.94rem; color: var(--body); margin: 0; }

.metro-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.metro-tile {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  padding: 15px 17px; text-decoration: none; color: var(--moon);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.metro-tile:hover { border-color: var(--amber); box-shadow: var(--glow); color: var(--moon); transform: translateY(-1px); }
.metro-tile .m-name { font-weight: 700; font-size: 0.96rem; }
.metro-tile .m-state { display: block; font-size: 0.8rem; color: var(--dim); font-weight: 400; }
.metro-tile .m-count { font-size: 0.82rem; color: var(--amber-bright); background: var(--amber-tint); border-radius: 999px; padding: 3px 11px; white-space: nowrap; }

.honest-box {
  border: 1px solid var(--line); border-left: 3px solid var(--amber);
  background: var(--raised); border-radius: var(--r-sm); padding: 24px 28px; max-width: 760px;
}
.honest-box h3 { margin-bottom: 8px; }
.honest-box p { color: var(--body); margin-bottom: 8px; }
.honest-box p:last-child { margin: 0; }

.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px;
  padding: 20px 2px; font-family: var(--serif); font-size: 1.14rem; color: var(--moon);
}
.faq-item summary:hover { color: var(--amber-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--amber); font-size: 1.35rem; line-height: 1; }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body { padding: 0 2px 20px; color: var(--body); max-width: 56em; }

/* ---------- pricing ---------- */

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 30px; }
.price-card .price-name { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.price-card .price-amount { font-family: var(--serif); font-size: 2.5rem; color: var(--moon); }
.price-card .price-amount small { font-size: 1rem; color: var(--dim); font-family: var(--sans); font-weight: 400; }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; font-size: 0.94rem; color: var(--body); }
.price-card li { padding-left: 24px; position: relative; }
.price-card li::before {
  content: '✦'; position: absolute; left: 0; top: 0;
  color: var(--amber); font-size: 0.8rem;
}
.price-card .btn { margin-top: auto; }
.price-card-hero { border-color: var(--amber); box-shadow: var(--shadow-lift), var(--glow); position: relative; }
.price-card-hero::before {
  content: '✦ Most popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--night); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 16px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber-bright); white-space: nowrap;
}

/* ---------- misc ---------- */

.flash { border-radius: var(--r-sm); padding: 14px 17px; margin: 0 0 20px; font-size: 0.95rem; }
.flash-ok { background: var(--ok-tint); color: var(--ok-deep); border: 1px solid color-mix(in srgb, var(--ok-deep) 30%, transparent); }
.flash-err { background: var(--danger-tint); color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 35%, transparent); }

.empty-state {
  text-align: center; padding: 68px 24px; border: 1px dashed var(--line);
  border-radius: var(--r); background: var(--raised);
}
.empty-state svg { width: 44px; height: 48px; color: var(--amber); opacity: 0.6; margin-bottom: 14px; }
.empty-state h3 { margin-bottom: 6px; }
.empty-state p { color: var(--dim); max-width: 34em; margin: 0 auto 20px; }

.pagination { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 0 0; }
.page-link { font-size: 0.94rem; font-weight: 700; text-decoration: none; padding: 9px 16px; border: 1px solid var(--line-soft); border-radius: 999px; background: var(--raised); color: var(--amber); }
.page-link:hover { border-color: var(--amber); }
.page-status { font-size: 0.88rem; color: var(--dim); }

.prose { max-width: 720px; padding: 48px 0 84px; }
.prose h1 { margin-bottom: 10px; }
.prose .prose-updated { color: var(--dim); font-size: 0.9rem; margin-bottom: 36px; }
.prose h2 { margin-top: 44px; font-size: 1.45rem; }
.prose h3 { margin-top: 26px; }
.prose p, .prose li { color: var(--body); font-size: 1.01rem; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose .lead { font-size: 1.14rem; color: var(--body); }
.prose blockquote { margin: 24px 0; padding: 18px 24px; border-left: 3px solid var(--amber); background: var(--raised); border-radius: 0 var(--r-sm) var(--r-sm) 0; }

.checklist { list-style: none; padding: 0; counter-reset: item; }
.checklist > li {
  counter-increment: item; position: relative; padding: 18px 20px 18px 64px; margin-bottom: 12px;
  background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r-sm);
}
.checklist > li::before {
  content: counter(item); position: absolute; left: 16px; top: 16px;
  width: 30px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); color: var(--amber-bright);
  background: var(--amber-tint); border: 1px solid var(--line); border-radius: 999px 999px 6px 6px;
}
.checklist > li strong { display: block; margin-bottom: 2px; color: var(--moon); }

/* ---------- dashboard & admin ---------- */

.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding-bottom: 40px; }
.dash-card h2 { font-size: 1.2rem; }
.dash-card .dash-sub { font-size: 0.9rem; color: var(--dim); margin-bottom: 16px; }
.status-pill { display: inline-block; font-size: 0.78rem; font-weight: 800; padding: 3px 12px; border-radius: 999px; letter-spacing: 0.02em; }
.status-published { background: var(--ok-tint); color: var(--ok-deep); }
.status-pending { background: var(--amber-tint); color: var(--amber-bright); }
.status-rejected, .status-removed, .status-suspended { background: var(--danger-tint); color: var(--danger); }
.status-filled { background: var(--rose-tint); color: var(--rose); }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; }
.admin-table th { text-align: left; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); padding: 11px 14px; border-bottom: 1px solid var(--line-soft); background: var(--night-deep); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--line-soft); vertical-align: top; color: var(--body); }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-actions form { display: inline; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin-bottom: 32px; }
.stat-tile { background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: 16px 18px; }
.stat-tile .stat-n { font-family: var(--serif); font-size: 2rem; color: var(--amber-bright); line-height: 1.1; }
.stat-tile .stat-l { font-size: 0.82rem; color: var(--dim); }

/* ---------- footer ---------- */

/* Centered, ceremonial — an evening dedication, not a link warehouse. */
.site-footer {
  margin-top: 48px;
  background:
    radial-gradient(50rem 22rem at 50% 0%, rgba(101, 133, 84, 0.11), transparent 65%),
    var(--night-deep);
  color: var(--body);
  border-top: 1px solid var(--line-soft);
}
.footer-center {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 60px 20px 44px;
}
.footer-verse { font-size: 1.3rem; color: var(--amber); opacity: 0.92; margin: 22px 0 6px; }
.footer-tag { font-size: 0.95rem; margin: 0 0 26px; max-width: 34em; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
  max-width: 46em; border-block: 1px solid var(--line-soft); padding: 16px 8px;
}
.footer-links a {
  color: var(--body); text-decoration: none; font-size: 0.88rem; padding: 4px 0;
}
.footer-links a:hover { color: var(--amber-bright); text-decoration: underline; }
.footer-links a + a::before { content: '✦'; color: var(--amber); font-size: 0.55rem; margin: 0 14px; vertical-align: 2px; }
.footer-fineprint { font-size: 0.8rem; color: var(--dim); max-width: 40em; line-height: 1.8; margin: 24px 0 0; }
.ar { font-size: 1.05em; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-inner { gap: 36px; padding: 56px 0 64px; }
  .browse-layout, .profile-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}

@media (max-width: 760px) {
  /* backdrop-filter would make the header the containing block for the
     fixed-position overlay menu — keep the mobile header solid instead. */
  .site-header { backdrop-filter: none; background: var(--night-deep); }
  /* Keep the wordmark and the ✕ toggle above the fixed overlay (z 40). */
  .mast { padding: 12px 16px; position: relative; z-index: 41; }
  .mast-side-start { visibility: hidden; }
  .mast-post { display: none; }
  .logo-mark { width: 27px; height: 27px; }
  .logo-word { font-size: 1.3rem; }
  .nav-toggle { display: block; }

  /* The menu becomes a full-screen sage overlay with serif links. */
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; position: fixed; inset: 0; z-index: 40;
    flex-direction: column; justify-content: center; align-items: center; gap: 4px;
    background:
      radial-gradient(30rem 20rem at 50% 12%, rgba(101, 133, 84, 0.14), transparent 60%),
      var(--night-deep);
    border: 0; padding: 90px 24px 60px;
  }
  .site-nav.open > a {
    font-family: var(--serif); font-size: 1.65rem; text-transform: none;
    letter-spacing: 0.02em; color: var(--moon); border: 0; margin: 0; padding: 10px 16px;
  }
  .site-nav.open > a:hover, .site-nav.open > a.active { color: var(--amber-bright); }
  .site-nav.open .nav-extra {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
    min-width: 220px;
  }
  .site-nav.open .nav-extra a { color: var(--dim); font-size: 1.05rem; text-decoration: none; padding: 8px 16px; }
  .site-nav.open .nav-extra a:hover { color: var(--amber-bright); }
  body.nav-open { overflow: hidden; }

  .journey::before { left: 23px; }
  .journey-item { grid-template-columns: 64px 1fr; margin-bottom: 22px; }
  .step-num { grid-column: 1; grid-row: 1; align-self: start; justify-self: start; margin-left: 3px; width: 40px; height: 46px; font-size: 1.1rem; }
  .journey-item:nth-child(odd) .journey-body,
  .journey-item:nth-child(even) .journey-body { grid-column: 2; text-align: left; }

  h1 { font-size: 1.85rem; }
  .section { padding: 48px 0; }
  .footer-links a + a::before { margin: 0 9px; }
  .cg-card-head { padding-right: 0; }
  .sponsored-tag { position: static; align-self: flex-start; order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
