/* ==========================================================================
   Ava Knight Designs — stylesheet
   One file, no framework. Mobile first.
   ========================================================================== */

:root {
  --ink:      #3b332c;
  --ink-soft: #6b5f52;
  --muted:    #8a7c6d;
  --line:     #e7ded2;
  --line-soft:#f0e9df;
  --bg:       #fdfaf5;
  --card:     #fffdfa;
  --plum:     #7a3b52;
  --plum-dk:  #5f2c40;
  --gold:     #b8941f;
  --green:    #4a7c59;
  --red:      #a33a33;
  --radius:   10px;
  --shadow:   0 1px 2px rgba(59,51,44,.05), 0 8px 24px -12px rgba(59,51,44,.18);
  --serif:    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:     "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--plum-dk); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; font-family: var(--sans);
     font-weight: 700; color: var(--muted); margin-bottom: .4em; }

p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow-main { max-width: 820px; }

.muted  { color: var(--muted); }
.small  { font-size: .86rem; }
.tiny   { font-size: .78rem; }
.opt    { color: var(--muted); font-weight: 400; font-size: .8rem; }
.strong { font-weight: 700; }
.narrow { max-width: 56ch; }

.eyebrow { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
           color: var(--gold); font-weight: 700; margin-bottom: .8em; }
.kicker  { font-size: .72rem; letter-spacing: .11em; text-transform: uppercase;
           color: var(--muted); font-weight: 700; margin: 0 0 .35em; }
.lede    { font-size: 1.08rem; color: var(--ink-soft); }

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

.btn {
  display: inline-block; border: 1px solid var(--plum); background: var(--plum); color: #fff;
  font-family: var(--sans); font-size: .92rem; font-weight: 700; letter-spacing: .02em;
  padding: .7em 1.4em; border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: background .15s ease, transform .1s ease;
}
.btn:hover  { background: var(--plum-dk); border-color: var(--plum-dk); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn.ghost  { background: transparent; color: var(--plum); }
.btn.ghost:hover { background: rgba(122,59,82,.07); color: var(--plum-dk); }
.btn.small  { font-size: .82rem; padding: .5em 1.05em; }
.btn.wide   { width: 100%; text-align: center; }

.linkbtn {
  background: none; border: 0; padding: 0 .55em 0 0; margin: 0 .3em 0 0;
  color: var(--plum); font: inherit; font-size: .84rem; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.linkbtn:hover  { color: var(--plum-dk); }
.linkbtn.danger { color: var(--red); }

/* ------------------------------------------------------------------- header */

.site-head, .admin-head {
  background: var(--card); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.head-inner { display: flex; align-items: center; gap: 16px; padding-top: 14px; padding-bottom: 14px;
              flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--plum);
         margin-right: auto; }
.brand-mark { display: flex; color: var(--gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--ink); }
.brand-text em { font-style: italic; font-size: .76rem; color: var(--muted); font-family: var(--serif); }

.navtoggle { display: none; }
.navburger { display: none; }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft); font-size: .88rem; font-weight: 500;
  padding: .45em .75em; border-radius: 999px; white-space: nowrap;
}
.site-nav a:hover { background: var(--line-soft); color: var(--ink); }
.site-nav a.on    { color: var(--plum); font-weight: 700; background: rgba(122,59,82,.08); }
.nav-cart { border: 1px solid var(--line) !important; }

.pill { display: inline-block; background: var(--plum); color: #fff; font-size: .7rem; font-weight: 700;
        border-radius: 999px; padding: .05em .5em; margin-left: .25em; vertical-align: text-top; }

@media (max-width: 780px) {
  .navburger { display: flex; flex-direction: column; justify-content: center; gap: 4px;
               width: 42px; height: 38px; padding: 8px; cursor: pointer; border: 1px solid var(--line);
               border-radius: 8px; }
  .navburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 2px;
              padding-bottom: 8px; }
  .navtoggle:checked ~ .site-nav { display: flex; }
  .site-nav a { padding: .6em .8em; }
}

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

.hero {
  background: linear-gradient(170deg, #fbf4ea 0%, var(--bg) 72%);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(40px, 8vw, 84px) 0;
  text-align: center;
}
.hero-inner { max-width: 720px; }
.hero h1 { margin-bottom: .45em; }
.hero .lede { max-width: 54ch; margin: 0 auto 1.6em; }
.hero-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0; }

/* hero with Ava's portrait alongside */
.hero.has-portrait { text-align: left; padding-bottom: 0; }
.hero.has-portrait .hero-inner { max-width: 1120px; display: grid; gap: 8px;
                                 grid-template-columns: 1fr; align-items: end; }
.hero.has-portrait .lede { margin-left: 0; }
.hero.has-portrait .hero-cta { justify-content: flex-start; }
.hero.has-portrait .hero-copy { padding-bottom: 40px; }
.hero-portrait { display: none; }
@media (min-width: 880px) {
  .hero.has-portrait .hero-inner { grid-template-columns: 1.25fr .75fr; gap: 40px; }
  .hero-portrait { display: block; }
}

/* transparent cut-out portrait sitting on a soft arc */
.portrait { position: relative; }
.portrait::before {
  content: ""; position: absolute; inset: 6% 4% 0; border-radius: 999px 999px 26px 26px;
  background: radial-gradient(120% 85% at 50% 15%, #f6e4d2 0%, #efdcc9 55%, #e8d3bd 100%);
}
.portrait img { position: relative; width: 100%; max-width: 420px; margin: 0 auto;
                display: block; filter: drop-shadow(0 14px 28px rgba(59,51,44,.16)); }

main { flex: 1 0 auto; padding: 36px 0 64px; }

.page-title { margin-bottom: .3em; }

.section-title {
  font-family: var(--serif); font-size: 1.55rem; margin: 0 0 .7em;
  display: flex; align-items: baseline; gap: .6em; flex-wrap: wrap;
}
.section-title .count { font-family: var(--sans); font-size: .78rem; color: var(--muted);
                        font-weight: 500; letter-spacing: .05em; }

/* ------------------------------------------------------------- gallery bits */

.gallery-bar { display: flex; align-items: baseline; justify-content: space-between;
               gap: 16px; flex-wrap: wrap; }
.searchbox { display: flex; gap: 6px; margin-bottom: 1em; }
.searchbox input { border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em;
                   font: inherit; font-size: .88rem; background: #fff; min-width: 190px; }
.searchbox button { border: 1px solid var(--line); background: #fff; border-radius: 999px;
                    padding: .5em 1.1em; font: inherit; font-size: .84rem; cursor: pointer; color: var(--ink-soft); }
.searchbox button:hover { background: var(--line-soft); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 28px; }
.chip {
  display: inline-flex; align-items: center; gap: .4em; text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px; padding: .38em .95em;
  font-size: .84rem; color: var(--ink-soft); background: var(--card);
}
.chip span { font-size: .72rem; color: var(--muted); }
.chip:hover { border-color: var(--plum); color: var(--plum); }
.chip.on { background: var(--plum); border-color: var(--plum); color: #fff; }
.chip.on span { color: rgba(255,255,255,.75); }

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

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
        overflow: hidden; display: flex; flex-direction: column;
        transition: transform .16s ease, box-shadow .16s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-img { display: block; position: relative; aspect-ratio: 4 / 5; background: var(--line-soft);
            overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.035); }
.card-img .badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: #fff;
                   font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
                   padding: .25em .7em; border-radius: 999px; }
.card-img .imgcount { position: absolute; bottom: 10px; right: 10px; background: rgba(59,51,44,.72);
                      color: #fff; font-size: .68rem; padding: .2em .6em; border-radius: 999px; }
.noimg { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
         color: var(--muted); font-size: .82rem; background: var(--line-soft); }
.noimg.sm { width: 46px; height: 58px; border-radius: 5px; }

.card-body { padding: 15px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.18rem; margin: 0 0 .3em; }
.card-body h3 a { color: var(--ink); text-decoration: none; }
.card-body h3 a:hover { color: var(--plum); }
.blurb { font-size: .88rem; color: var(--ink-soft); margin: 0 0 1em; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between;
             gap: 10px; padding-top: 10px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.price { font-family: var(--serif); font-size: 1.05rem; color: var(--plum); font-weight: 600; }

.empty { text-align: center; padding: 64px 20px; border: 1px dashed var(--line);
         border-radius: var(--radius); background: var(--card); }
.empty h3 { font-size: 1.4rem; }

/* -------------------------------------------------------------- detail page */

.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1.4em; }
.crumbs a { color: var(--muted); }
.crumbs span { margin: 0 .4em; }

.detail-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .detail-grid { grid-template-columns: 1.15fr 1fr; gap: 48px; } }

.photo-main { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
              background: var(--line-soft); aspect-ratio: 4 / 5; }
.photo-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumb { width: 66px; height: 82px; padding: 0; border: 1px solid var(--line); border-radius: 6px;
         overflow: hidden; background: none; cursor: pointer; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.on { border-color: var(--plum); box-shadow: 0 0 0 2px rgba(122,59,82,.18); }

.detail-info h1 { margin-bottom: .25em; }
.price-big { font-family: var(--serif); font-size: 1.7rem; color: var(--plum); font-weight: 600;
             margin: .3em 0 .2em; }
.prose { color: var(--ink-soft); }

.specs { display: grid; grid-template-columns: auto 1fr; gap: .35em 1.2em; margin: 1.6em 0;
         padding: 1.1em 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
         font-size: .9rem; }
.specs dt { color: var(--muted); font-weight: 500; }
.specs dd { margin: 0; }

.addform { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
           padding: 18px; }
.addform .row { display: flex; gap: 12px; }
.qty input { width: 5.5rem; }

.more { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }

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

label { display: block; font-size: .85rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 1em; }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=tel],
input[type=search], input[type=date], select, textarea {
  display: block; width: 100%; margin-top: .35em; padding: .62em .8em;
  border: 1px solid var(--line); border-radius: 7px; background: #fff;
  font: inherit; font-size: .94rem; color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(122,59,82,.12);
}
input[type=file] { font-size: .85rem; margin-top: .4em; }

.stack > label:last-of-type { margin-bottom: 1.2em; }
.two   { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
.three { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .two   { grid-template-columns: 1fr 1fr; }
  .three { grid-template-columns: 1fr 1fr 1fr; }
}

.fs { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px 4px;
      margin: 0 0 1.3em; background: rgba(255,255,255,.55); }
.fs legend { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
             color: var(--muted); padding: 0 .5em; }

.checks { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 1.4em; }
.check { display: flex; align-items: center; gap: .5em; margin: 0; font-size: .88rem; }
.check input { width: auto; margin: 0; }
.check.inline input { display: inline-block; margin-left: .4em; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.inline-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 1em; }
.inline-actions input { width: auto; margin-top: 0; }

/* --------------------------------------------------------------------- alerts */

.alert { border-radius: 8px; padding: .8em 1.1em; margin: 0 0 1.4em; font-size: .9rem;
         border: 1px solid var(--line); background: var(--card); }
.alert ul { margin: 0; padding-left: 1.2em; }
.alert.ok   { border-color: #bcd6c3; background: #f1f8f2; color: #2f5c3c; }
.alert.err  { border-color: #e2b8b4; background: #fcf2f1; color: #8c2f28; }
.alert.warn { border-color: #e6d3a4; background: #fdf8ec; color: #7a601a; }

/* ----------------------------------------------------------------- cart page */

.cart-list { list-style: none; margin: 0 0 1em; padding: 0; }
.cart-line { display: grid; grid-template-columns: 84px 1fr; gap: 16px; padding: 18px 0;
             border-bottom: 1px solid var(--line); align-items: start; }
@media (min-width: 720px) { .cart-line { grid-template-columns: 96px 1fr 110px; } }
.cart-thumb { display: block; border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
              aspect-ratio: 4/5; background: var(--line-soft); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-main h3 { font-size: 1.1rem; margin: 0 0 .15em; }
.cart-main h3 a { color: var(--ink); text-decoration: none; }
.cart-main .price { font-size: .95rem; margin-bottom: .8em; }
.cart-side { grid-column: 2; }
@media (min-width: 720px) { .cart-side { grid-column: 3; } }
.cart-actions { margin-bottom: 1.2em; }
.cart-remove-row { font-size: .84rem; margin-bottom: 2.4em; color: var(--muted); }

.request-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
               padding: 24px; margin-top: 8px; }

.sent-card { max-width: 560px; margin: 40px auto; text-align: center; background: var(--card);
             border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 28px; }
.sent-mark { color: var(--green); display: flex; justify-content: center; margin-bottom: 12px; }
.ref { font-size: .9rem; color: var(--muted); }

/* ---------------------------------------------------------------- about page */

.about-grid { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 1.25fr 1fr; gap: 56px; } }
.about-photo > img { border-radius: var(--radius); border: 1px solid var(--line); }
.about-photo .portrait img { max-width: 460px; }
.photo-placeholder { border: 1px dashed var(--line); border-radius: var(--radius); padding: 28px;
                     color: var(--line); background: var(--card); }
.likes { margin-top: 64px; padding-top: 44px; border-top: 1px solid var(--line);
         display: grid; gap: 30px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .likes { grid-template-columns: 1.1fr .9fr; gap: 48px; } }
.likes-photo { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
               box-shadow: var(--shadow); }
.likes-photo img { width: 100%; }
.likes-copy h2 { margin-bottom: .4em; }

.how { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.steps { list-style: none; margin: 0 0 2em; padding: 0; display: grid; gap: 18px;
         grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.steps li { display: flex; gap: 12px; align-items: flex-start; }
.steps p { margin: 0; font-size: .93rem; color: var(--ink-soft); }
.stepno { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 999px; background: var(--plum);
          color: #fff; display: flex; align-items: center; justify-content: center;
          font-family: var(--serif); font-size: 1rem; font-weight: 600; }

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

.site-foot, .admin-foot { background: var(--card); border-top: 1px solid var(--line);
                          padding: 30px 0; margin-top: auto; font-size: .88rem; }
.foot-inner { display: grid; gap: 14px; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { color: var(--ink-soft); text-decoration: none; }
.foot-links a:hover { color: var(--plum); }
.build { font-size: .76rem; color: var(--muted); margin: 0; }
.admin-foot { font-size: .76rem; color: var(--muted); }

/* ------------------------------------------------------------- auth screens */

.auth-body { display: flex; align-items: center; justify-content: center; min-height: 100vh;
             background: linear-gradient(170deg, #fbf4ea, var(--bg)); padding: 24px; }
.auth-card { width: 100%; max-width: 400px; background: var(--card); border: 1px solid var(--line);
             border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 1.7rem; margin-bottom: .1em; }
.auth-card > .muted { margin-bottom: 1.6em; }

/* -------------------------------------------------------------- admin screens */

body.admin { background: #f7f4ef; }
.admin-head .brand-text strong { color: var(--plum); }
.admin-main { padding-top: 28px; }
.admin-title { display: flex; align-items: center; justify-content: space-between; gap: 16px;
               flex-wrap: wrap; margin-bottom: 20px; }
.admin-title h1 { margin: 0; font-size: 1.9rem; }

.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
         padding: 24px; margin-bottom: 26px; }

.stats { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
         margin-bottom: 28px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
        padding: 16px 18px; }
.stat a { text-decoration: none; color: inherit; display: block; }
.stat .n { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1; }
.stat .l { display: block; font-size: .78rem; color: var(--muted); margin-top: .3em; }
.stat.hot { border-color: var(--gold); background: #fdf8ec; }
.stat.hot .n { color: var(--gold); }

.table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line);
         border-radius: var(--radius); overflow: hidden; font-size: .9rem; }
.table th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
            color: var(--muted); padding: 11px 12px; border-bottom: 1px solid var(--line);
            background: #faf6f0; white-space: nowrap; }
.table td { padding: 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.table tr:last-child td { border-bottom: 0; }
.tcell-img img { width: 46px; height: 58px; object-fit: cover; border-radius: 5px; }
.tcell-actions { white-space: nowrap; }
@media (max-width: 820px) {
  .table, .table thead, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table thead { display: none; }
  .table tr { border-bottom: 1px solid var(--line); padding: 8px 0; }
  .table td { border: 0; padding: 4px 12px; }
}

.tag { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase;
       letter-spacing: .07em; padding: .2em .6em; border-radius: 999px; vertical-align: middle; }
.tag.green { background: #e6f0e8; color: var(--green); }
.tag.grey  { background: var(--line-soft); color: var(--muted); }
.tag.gold  { background: #fbf1d6; color: #8a6d12; }

.photo-admin { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
               margin-bottom: 16px; }
.pa-item { border: 1px solid var(--line); border-radius: 8px; padding: 8px; background: #fff; }
.pa-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 5px; margin-bottom: 8px; }
.pa-item label { margin-bottom: .5em; }

.simple-list { list-style: none; margin: 0 0 1.2em; padding: 0; }
.simple-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px;
                  padding: .55em 0; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }

.req { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
       margin-bottom: 12px; overflow: hidden; }
.req > summary { cursor: pointer; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
                 flex-wrap: wrap; list-style: none; }
.req > summary::-webkit-details-marker { display: none; }
.req > summary:hover { background: #faf6f0; }
.req[open] > summary { border-bottom: 1px solid var(--line); background: #faf6f0; }
.reqname { font-weight: 500; }
.req-body { padding: 20px 18px; }
.req-cols { display: grid; gap: 28px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 780px) { .req-cols { grid-template-columns: 1fr 1fr; } }
.req-items { list-style: none; margin: 0; padding: 0; }
.req-items li { padding: .5em 0; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
blockquote { margin: 0; padding: .8em 1.1em; background: #faf6f0; border-left: 3px solid var(--gold);
             border-radius: 0 6px 6px 0; font-size: .92rem; }
.req-form { border-top: 1px solid var(--line); padding-top: 16px; }

.transcript { background: #2f2a25; color: #ddd4c8; font-family: ui-monospace, Menlo, Consolas, monospace;
              font-size: .74rem; line-height: 1.5; padding: 12px 14px; border-radius: 7px;
              overflow-x: auto; white-space: pre-wrap; word-break: break-word; }

@media print { .site-head, .site-foot, .admin-head, .admin-foot, .btn, .linkbtn { display: none !important; } }
