/* The DNL Bureau ------------------------------------------------------------
   Palette taken from the original site: warm espresso brown (#3B2E1A /
   #2F2515 / #382C19), white, #F5F5F5, with the gold of the brand lockup.
   Type is the original pairing: Playfair Display over Open Sans.
--------------------------------------------------------------------------- */

:root {
  --brown: #3b2e1a;
  --brown-deep: #2f2515;
  --brown-mid: #382c19;
  --char: #262320;
  --gold: #c9a227;
  --gold-soft: #d8b455;
  --gold-pale: #e7d3a0;
  --ink: #221c12;
  --body: #5a5348;
  --line: #e2dcd1;
  --line-soft: #ece7dd;
  --paper: #ffffff;
  --paper-alt: #f5f5f5;
  --danger: #9c3223;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --wrap: 1160px;
  --r: 3px;
  --shadow: 0 1px 2px rgba(47, 37, 21, .06), 0 10px 30px rgba(47, 37, 21, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

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

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.3vw, 2.3rem); }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1.15em; }
a { color: var(--brown); }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sr, .skip { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus {
  position: fixed; top: 10px; left: 10px; z-index: 200; width: auto; height: auto; clip: auto;
  background: var(--brown-deep); color: #fff; padding: 10px 16px; border-radius: var(--r);
}
.sprite { position: absolute; width: 0; height: 0; }

.ic {
  width: 20px; height: 20px; flex: none; fill: none;
  stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.ic-lg { width: 30px; height: 30px; stroke-width: 1.35; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  padding: 15px 28px; border: 1px solid transparent; border-radius: var(--r);
  cursor: pointer; transition: background .18s, color .18s, border-color .18s;
}
.btn-sm { padding: 11px 20px; font-size: .73rem; }
.btn-gold { background: var(--gold); color: var(--brown-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--brown); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brown); }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn[hidden] { display: none; }

/* utility bar + header ------------------------------------------------- */

.utility { background: var(--brown-deep); color: rgba(255, 255, 255, .74); font-size: .77rem; }
.utility-in { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.utility-facts { display: flex; flex-wrap: wrap; gap: 4px 22px; list-style: none; margin: 0; padding: 0; letter-spacing: .04em; }
.utility-facts span { color: var(--gold); font-weight: 700; letter-spacing: .12em; margin-right: 5px; }
.utility-contact a { color: rgba(255, 255, 255, .74); text-decoration: none; }
.utility-contact a:hover { color: var(--gold); }

.site-head { position: sticky; top: 0; z-index: 60; background: var(--char); border-bottom: 1px solid rgba(201, 162, 39, .28); }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .82rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: rgba(255, 255, 255, .84); text-decoration: none; }
.nav a:hover { color: var(--gold); }
.nav a.btn-gold { color: var(--brown-deep); }

.nav-toggle { display: none; width: 44px; height: 44px; background: none; border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--r); cursor: pointer; position: relative; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  position: absolute; left: 12px; width: 20px; height: 2px; background: var(--gold-pale); content: '';
}
.nav-toggle-bars { top: 21px; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--char); border-bottom: 1px solid rgba(201, 162, 39, .3); padding: 6px 24px 20px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .nav a.btn { margin-top: 16px; border: 1px solid var(--gold); justify-content: center; }
  .hide-sm { display: none; }
  .brand img { height: 42px; }
}

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

.hero { position: relative; overflow: hidden; background: var(--char); color: #fff; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/img/us-night.jpg') center 38% / cover no-repeat;
  opacity: .5;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38, 35, 32, .72) 0%, rgba(47, 37, 21, .86) 100%);
}
.hero-in { position: relative; z-index: 2; padding: clamp(52px, 8vw, 96px) 24px clamp(52px, 7vw, 88px); max-width: 900px; text-align: center; margin: 0 auto; }
.hero-logo { height: clamp(112px, 17vw, 176px); width: auto; margin: 0 auto clamp(6px, 1.5vw, 14px); }
.tagline {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: clamp(1.15rem, 2.5vw, 1.7rem); margin: 0 0 26px;
}
.tagline-dark { color: var(--brown); margin-bottom: 18px; }
.lead { font-size: clamp(1rem, 1.5vw, 1.1rem); color: rgba(255, 255, 255, .87); margin: 0 auto; max-width: 48rem; }

/* action cards -------------------------------------------------------- */

.actions { background: var(--paper-alt); border-bottom: 1px solid var(--line); }
.actions-in { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 26px; padding-top: clamp(38px, 5vw, 58px); padding-bottom: clamp(38px, 5vw, 58px); }
.action { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--r); padding: 30px 28px; text-align: center; }
.action .ic-lg { color: var(--gold); margin: 0 auto 14px; }
.action h2 { font-size: 1.24rem; margin-bottom: 10px; }
.action p { font-size: .93rem; margin-bottom: 22px; }

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

.section { padding: clamp(56px, 7.5vw, 96px) 0; }
.section-alt { background: var(--paper-alt); }
.section-forms { background: var(--paper-alt); }

.sec-head { max-width: 50rem; margin-bottom: clamp(34px, 4.5vw, 54px); }
.sec-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-lead { font-size: 1.02rem; }

/* mission ------------------------------------------------------------- */

.mission-in { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(30px, 5vw, 60px); align-items: start; }
.mission-photo img { border-radius: var(--r); border: 1px solid var(--line); }
.mission-body h2 { margin-bottom: 20px; }
.mission-body p:last-child { margin-bottom: 0; }
@media (max-width: 880px) { .mission-in { grid-template-columns: 1fr; } }

/* service cards ------------------------------------------------------- */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--paper); padding: 32px 28px; }
.card .ic-lg { color: var(--gold); margin-bottom: 15px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .92rem; margin: 0; }

/* credentials --------------------------------------------------------- */

.section-dark { position: relative; overflow: hidden; background: var(--brown-deep); color: rgba(255, 255, 255, .82); }
.cred-bg { position: absolute; inset: 0; background: url('/assets/img/capitol.jpg') center 30% / cover no-repeat; opacity: .17; }
.section-dark::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(47, 37, 21, .82), rgba(38, 35, 32, .93)); }
.cred-wrap { position: relative; z-index: 2; }
.sec-head-dark h2 { color: #fff; }
.sec-head-dark .sec-lead { color: rgba(255, 255, 255, .78); }

.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 18px; margin-bottom: 38px; }
.cred-id { background: rgba(255, 255, 255, .06); border: 1px solid rgba(201, 162, 39, .34); border-radius: var(--r); padding: 22px 24px; }
.cred-label { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.cred-id strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: #fff; letter-spacing: .04em; word-break: break-word; }
.cred-id small { display: block; margin-top: 6px; font-size: .8rem; color: rgba(255, 255, 255, .62); }

.cred-intro { font-weight: 600; color: #fff; margin-bottom: 16px; }
.cred-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 12px 40px; list-style: none; margin: 0 0 32px; padding: 0; }
.cred-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; }
.cred-list .ic { color: var(--gold); stroke-width: 2.3; margin-top: 4px; width: 16px; height: 16px; }
.cred-note { font-size: .9rem; color: rgba(255, 255, 255, .68); border-top: 1px solid rgba(255, 255, 255, .16); padding-top: 22px; margin: 0; }
.cred-note a { color: var(--gold); }

/* form shell + tabs --------------------------------------------------- */

.form-shell { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }

.tabs { display: grid; grid-template-columns: repeat(3, 1fr); background: #faf8f4; border-bottom: 1px solid var(--line); }
.tab { appearance: none; background: none; border: 0; border-bottom: 3px solid transparent; padding: 19px 22px; text-align: left; cursor: pointer; font-family: var(--sans); color: var(--body); transition: background .18s; }
.tab strong { display: block; font-size: .96rem; color: var(--ink); font-weight: 700; }
.tab span { display: block; font-size: .78rem; margin-top: 2px; }
.tab:hover { background: #f2ede4; }
.tab.is-on { background: var(--paper); border-bottom-color: var(--gold); }
@media (max-width: 780px) {
  .tabs { grid-template-columns: 1fr; }
  .tab { border-bottom: 1px solid var(--line); border-left: 3px solid transparent; }
  .tab.is-on { border-left-color: var(--gold); border-bottom-color: var(--line); }
}

.panel { padding: clamp(24px, 3.6vw, 40px); }
.panel[hidden] { display: none; }

/* wizard -------------------------------------------------------------- */

.wiz-track { display: flex; flex-wrap: wrap; gap: 6px 10px; list-style: none; margin: 0 0 28px; padding: 0 0 24px; border-bottom: 1px solid var(--line); counter-reset: none; }
.wiz-step {
  display: flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600;
  color: #9a9184; padding: 6px 0;
}
.wiz-step + .wiz-step::before { content: ''; width: 22px; height: 1px; background: var(--line); margin-right: 4px; }
.wiz-step b {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--paper-alt); border: 1px solid var(--line); color: #9a9184;
  font-size: .78rem; font-weight: 700; flex: none;
}
.wiz-step.is-done { color: var(--brown); }
.wiz-step.is-done b { background: var(--gold-pale); border-color: var(--gold-soft); color: var(--brown-deep); }
.wiz-step.is-on { color: var(--ink); }
.wiz-step.is-on b { background: var(--gold); border-color: var(--gold); color: var(--brown-deep); }

.step { display: none; }
.step.is-on { display: block; animation: stepIn .22s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step-h { font-size: 1.35rem; margin-bottom: 8px; }
.step-note { font-size: .92rem; margin-bottom: 24px; }
.step-h + .grid-2, .step-h + .field, .step-h + .checks { margin-top: 22px; }

.wiz-nav { display: flex; align-items: center; gap: 14px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.wiz-count { font-size: .82rem; color: #8d8477; margin-right: auto; }
@media (max-width: 560px) {
  .wiz-nav { flex-wrap: wrap; }
  .wiz-count { order: 3; width: 100%; margin: 4px 0 0; }
  .wiz-nav .btn { flex: 1 1 auto; }
}

/* review list --------------------------------------------------------- */

.review { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; margin: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.review > div { display: grid; grid-template-columns: minmax(0, 34%) minmax(0, 66%); gap: 16px; padding: 13px 18px; border-bottom: 1px solid var(--line-soft); }
.review > div:last-child { border-bottom: 0; }
.review > div:nth-child(odd) { background: #faf8f4; }
.review dt { font-size: .82rem; font-weight: 600; color: var(--ink); margin: 0; }
.review dd { margin: 0; font-size: .93rem; white-space: pre-wrap; word-break: break-word; }
.review-empty { padding: 16px 18px; font-size: .92rem; color: #8d8477; }
@media (max-width: 620px) { .review > div { grid-template-columns: 1fr; gap: 3px; } }

/* fields -------------------------------------------------------------- */

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px 26px; }
.field { display: block; margin-bottom: 22px; border: 0; padding: 0; min-width: 0; }
.grid-2 .field, .field:last-child { margin-bottom: 0; }
.field > span, .field > legend { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; padding: 0; }
.field b { color: var(--danger); }

input[type=text], input[type=email], input[type=tel], input[type=date], select, textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .16s, box-shadow .16s;
}
textarea { resize: vertical; min-height: 96px; }
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.5l5-5' fill='none' stroke='%235a5348' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, .2); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-error { display: block; margin-top: 6px; font-size: .8rem; color: var(--danger); font-weight: 600; }

.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(256px, 1fr)); gap: 10px 22px; }
.checks label { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; cursor: pointer; }
.checks input { margin: 3px 0 0; width: 17px; height: 17px; accent-color: var(--brown); flex: none; }

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

.form-msg { margin-top: 20px; font-size: .95rem; }
.form-msg:empty { margin: 0; }
.form-msg .msg { padding: 18px 20px; border-radius: var(--r); border: 1px solid; }
.form-msg .msg-ok { background: #f4f8f2; border-color: #cadfc2; color: #2f5227; }
.form-msg .msg-bad { background: #fcf2f0; border-color: #e8cbc5; color: #8a2c22; }
.form-msg strong { display: block; font-family: var(--serif); font-size: 1.14rem; margin-bottom: 4px; }
.form-msg .ref { display: inline-block; margin-top: 10px; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .95rem; letter-spacing: .08em; background: rgba(47, 37, 21, .07); padding: 5px 11px; border-radius: 3px; }

/* slot picker --------------------------------------------------------- */

.slots { border: 1px solid var(--line); border-radius: var(--r); background: #faf8f4; padding: 20px; }
.slots-loading { font-size: .93rem; }
.slots[data-state=ready] .slots-loading { display: none; }
.slots-error p { font-size: .93rem; color: var(--danger); }

.slot-days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.slot-day {
  appearance: none; flex: none; min-width: 94px; padding: 11px 14px; cursor: pointer;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--ink); text-align: center;
  transition: border-color .16s, background .16s, color .16s;
}
.slot-day:hover { border-color: var(--gold); }
.slot-day.is-on { background: var(--brown); border-color: var(--brown); color: #fff; }
.slot-day small { display: block; font-size: .71rem; font-weight: 400; opacity: .72; }

.slot-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(102px, 1fr)); gap: 9px; }
.slot-time {
  appearance: none; padding: 12px 8px; cursor: pointer; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r);
  font-family: var(--sans); font-size: .89rem; font-weight: 600; color: var(--ink);
  transition: border-color .16s, background .16s, color .16s;
}
.slot-time:hover:not([disabled]) { border-color: var(--gold); }
.slot-time.is-on { background: var(--gold); border-color: var(--gold); color: var(--brown-deep); }
.slot-time[disabled] { cursor: not-allowed; color: #b3ada2; background: #f0ece4; text-decoration: line-through; }
.slot-selected { margin: 16px 0 0; font-size: .9rem; font-weight: 600; color: var(--brown); }
.slot-selected.is-empty { font-weight: 400; color: #8d8477; }

/* direct contact ------------------------------------------------------ */

.contact-direct { display: grid; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); gap: 26px; margin-top: 42px; padding-top: 34px; border-top: 1px solid var(--line); }
.cd-label { display: block; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: #9a8f5f; font-weight: 700; margin-bottom: 6px; }
.contact-direct a { color: var(--brown); text-decoration: none; font-weight: 600; }
.contact-direct a:hover { color: var(--gold); }
.contact-direct span:not(.cd-label) { font-size: .94rem; }

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

.site-foot { position: relative; background: var(--char); color: rgba(255, 255, 255, .64); font-size: .89rem; }
.foot-flag { height: 4px; background: url('/assets/img/flag.jpg') center 42% / cover no-repeat; }
.foot-in { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 40px; padding-top: 52px; padding-bottom: 40px; }
.foot-brand img { height: 96px; width: auto; }
.foot-brand p { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin: 10px 0 0; }
.foot-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 30px; }
.foot-cols h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 13px; }
.foot-cols a, .foot-cols span { display: block; padding: 5px 0; color: rgba(255, 255, 255, .64); text-decoration: none; }
.foot-cols a:hover { color: var(--gold); }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 20px; padding-bottom: 28px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .79rem; }
.foot-legal p { margin: 0; }
@media (max-width: 780px) { .foot-in { grid-template-columns: 1fr; gap: 32px; } }

/* 404 ----------------------------------------------------------------- */

.hero-actions { margin: 30px 0 0; }
.lead-link { color: var(--gold-pale); }
.lead-link:hover { color: var(--gold); }

/* hero type treatment ------------------------------------------------- */

.kicker {
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold-pale);
  margin: 0 0 20px;
}
.hero h1 { color: #fff; margin-bottom: 0; text-shadow: 0 2px 24px rgba(0, 0, 0, .45); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .rule { display: block; width: 84px; height: 2px; background: var(--gold); margin: 26px auto 26px; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 34px 0 0; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(0, 0, 0, .15); }
.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px;
  list-style: none; margin: 36px 0 0; padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-chips li { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: rgba(255, 255, 255, .82); }
.hero-chips .ic { color: var(--gold); width: 16px; height: 16px; stroke-width: 2.3; }

/* attachments --------------------------------------------------------- */

.uploads { margin-top: 22px; }
.uploads em { font-weight: 400; font-style: normal; color: var(--body); }
.drop {
  position: relative; display: block; text-align: center; cursor: pointer;
  padding: 26px 20px; background: #faf8f4;
  border: 1.5px dashed var(--line); border-radius: var(--r);
  transition: border-color .16s, background .16s;
}
.drop:hover, .drop.is-over { border-color: var(--gold); background: #fbf6ea; }
.drop .file-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.drop-text { display: block; font-size: .95rem; font-weight: 600; color: var(--ink); }
.drop-note { display: block; font-size: .8rem; color: #8d8477; margin-top: 5px; }
.uploads.is-full .drop { opacity: .5; pointer-events: none; }

.file-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.file-list li {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); font-size: .9rem;
}
.file-list .fname { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink); font-weight: 600; }
.file-list .fsize { font-size: .8rem; color: #8d8477; flex: none; }
.file-list .fstate { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; flex: none; }
.file-list .fstate-up { color: #8d8477; }
.file-list .fstate-ok { color: #2f6b45; }
.file-list .fstate-bad { color: var(--danger); }
.file-list li.is-bad { border-color: #e8cbc5; background: #fcf2f0; }
.file-remove {
  appearance: none; border: 0; background: none; cursor: pointer; flex: none;
  font-size: 1.3rem; line-height: 1; color: #a49a8c; padding: 0 2px;
}
.file-remove:hover { color: var(--danger); }
