/* Divine Hands Cleaning — the whole site.
   No framework, no media queries: every grid is repeat(auto-fit, minmax(X, 1fr))
   and collapses on its own from 1400px down to 360px. Keep it that way. */

/* ---------------------------------------------------------------- tokens */
:root {
  --ink: #0B1B2B;
  --blue: #0A4F92;
  --blue-light: #1273C4;
  --orange: #F2653B;
  --orange-hover: #D8491F;
  --body: #56718A;
  --muted: #7C93A8;
  --muted-dark: #9DB2C6;
  --faint-dark: #6E869C;
  --surface: #F5F8FB;
  --surface-tint: #F7FBFF;
  --surface-faint: #FAFCFE;
  --border: #E3EAF1;
  --border-input: #D7E2EC;
  --border-strip: #DDE7EF;
  --border-dashed: #B9CBDA;
  --pill-bg: #EEF5FB;
  --focus-ring: #E7F1FA;
  --success: #2FA84F;
  --success-bg: #EAF6EE;
  --map-bg: #EDF2F7;

  --display: "Bricolage Grotesque", "Instrument Sans", system-ui, sans-serif;
  --text: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --pad-x: 24px;

  --shadow-hero: 0 24px 60px -30px rgba(11, 27, 43, .4);
  --shadow-card: 0 16px 40px -28px rgba(11, 27, 43, .45);
  --shadow-float: 0 10px 26px -8px rgba(11, 27, 43, .5);
}

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

body {
  margin: 0;
  font-family: var(--text);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; margin: 0; }
p { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: #fff; color: var(--blue); padding: 12px 18px;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Shared bits ------------------------------------------------------------ */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-light);
}
.eyebrow-rule { display: flex; align-items: center; gap: 14px; }
.eyebrow-rule::before {
  content: ""; width: 34px; height: 1px; background: var(--blue-light); flex: none;
}
.eyebrow-rule .eyebrow { letter-spacing: .16em; color: var(--blue); }
.eyebrow-rule .dot { color: var(--muted-dark); font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--text); font-weight: 600; font-size: 17px; line-height: 1;
  padding: 16px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--border-input); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-on-dark {
  background: rgba(255, 255, 255, .08); color: #fff;
  border-color: rgba(255, 255, 255, .2);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, .16); }
.btn-sm { font-size: 15px; padding: 13px 24px; }

.textlink {
  display: inline-block; font-weight: 600; font-size: 16px; color: var(--blue);
}
.textlink:hover { color: var(--orange); }

.section-title {
  font-size: clamp(30px, 4vw, 44px); line-height: 1.05; letter-spacing: -.025em;
  margin-top: 12px;
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 12px var(--pad-x);
  display: flex; align-items: center; flex-wrap: wrap; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; }
.brand-name { display: block; font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -.02em; }
.brand-slogan {
  display: block;
  font-size: 10px; letter-spacing: .11em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}
.site-nav {
  margin-left: auto; display: flex; align-items: center; gap: 2px;
  overflow-x: auto; scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  padding: 9px 13px; border-radius: 9px; font-size: 14.5px; font-weight: 500;
  color: #56718A; white-space: nowrap;
}
.site-nav a:hover { color: var(--blue); background: var(--surface); }
.site-nav a.is-active { color: var(--blue); font-weight: 600; }
.header-cta {
  background: var(--orange); color: #fff; font-weight: 600; font-size: 14px;
  padding: 12px 20px; border-radius: 999px; white-space: nowrap;
}
.header-cta:hover { background: var(--orange-hover); }

/* ------------------------------------------------------- floating button */
.float-text {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff; font-weight: 600; font-size: 15px;
  padding: 15px 22px; border-radius: 999px; box-shadow: var(--shadow-float);
}
.float-text:hover { background: var(--orange-hover); }
.float-text svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: var(--muted-dark); }
.footer-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 60px var(--pad-x) 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px;
}
.footer-brand img { width: 44px; height: 44px; border-radius: 11px; object-fit: cover; }
.footer-brand .name {
  font-family: var(--display); font-weight: 600; font-size: 19px;
  letter-spacing: -.02em; color: #fff; margin-top: 14px;
}
.footer-brand .slogan { font-size: 14px; margin-top: 6px; }
.footer-legal { font-size: 13px; color: var(--faint-dark); margin-top: 18px; line-height: 1.7; }
.footer-col h3 {
  font-family: var(--text); font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14.5px; line-height: 1.5; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  max-width: var(--container); margin: 0 auto;
  padding: 20px var(--pad-x) 40px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 13px; color: var(--faint-dark);
}

/* ------------------------------------------------------------ hero (home) */
.hero { background: var(--surface); border-bottom: 1px solid var(--border); }
.hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 64px var(--pad-x) 72px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px); line-height: 1.02; letter-spacing: -.03em;
  margin: 20px 0 0;
}
.hero-lede { font-size: 19px; line-height: 1.6; color: var(--body); max-width: 46ch; margin-top: 20px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hours-strip {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--border-strip);
  display: flex; flex-wrap: wrap; gap: 0 28px;
}
.hours-strip > div + div { padding-left: 28px; border-left: 1px solid var(--border-strip); }
.hours-strip .label {
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-dark);
}
.hours-strip .value { font-size: 15px; font-weight: 500; color: var(--ink); margin-top: 4px; }
.hero-media {
  height: clamp(340px, 46vw, 480px); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder for photos the client has not supplied yet. */
.photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  background: var(--map-bg); border: 1px dashed var(--border-dashed);
  color: var(--muted); font-size: 13.5px; line-height: 1.5;
}

/* --------------------------------------------------------- credentials */
.credentials { background: #fff; border-bottom: 1px solid var(--border); }
.credentials-grid {
  max-width: var(--container); margin: 0 auto; padding: 26px var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 24px;
}
.credentials-grid .headline {
  font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -.02em;
}
.credentials-grid .subline { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* ------------------------------------------------------------- sections */
.section { padding: 88px var(--pad-x); background: #fff; }
.section-surface {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px var(--pad-x);
}
.section-dark { background: var(--ink); padding: 80px var(--pad-x); text-align: center; }

/* Service cards (home) */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.service-card { border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-card); }
.service-card h3 { font-size: 21px; letter-spacing: -.02em; }
.service-card p { font-size: 15px; line-height: 1.6; color: var(--body); margin-top: 10px; }

/* How it works */
.step-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 40px;
}
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: 15px;
}
.step-card h3 { font-size: 20px; margin-top: 18px; letter-spacing: -.02em; }
.step-card p { font-size: 15px; line-height: 1.6; color: var(--body); margin-top: 10px; }

/* Why us */
.split {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px; align-items: center;
}
.split-media { height: 400px; border-radius: 20px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 {
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.08; letter-spacing: -.025em;
  margin-top: 12px;
}
.reason-list { list-style: none; padding: 0; margin-top: 20px; }
.reason-list li {
  display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 20px 0;
}
.reason-list li + li { border-top: 1px solid var(--border); }
.reason-list .num {
  font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: .06em;
  color: var(--muted-dark); padding-top: 3px;
}
.reason-list p { font-size: 16px; line-height: 1.6; color: var(--body); }
.reason-list strong { color: var(--ink); font-weight: 600; }

/* Closing CTA */
.section-dark h2 {
  color: #fff; font-size: clamp(30px, 4.4vw, 48px); letter-spacing: -.03em; line-height: 1.05;
}
.section-dark .sub {
  font-size: 18px; color: var(--muted-dark); max-width: 52ch;
  margin: 18px auto 0; line-height: 1.6;
}
.cta-buttons {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px;
}
.cta-buttons .btn-primary { padding: 16px 30px; }

/* ---------------------------------------------------------- header band */
.page-band {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 64px var(--pad-x);
}
.page-band h1 {
  font-size: clamp(34px, 4.8vw, 54px); letter-spacing: -.03em; line-height: 1.04;
  margin-top: 12px;
}
.page-band .lede {
  font-size: 18px; line-height: 1.6; color: var(--body); max-width: 58ch; margin-top: 18px;
}

/* -------------------------------------------------------- services page */
.service-rows {
  max-width: var(--container); margin: 0 auto; padding: 72px var(--pad-x);
  display: flex; flex-direction: column; gap: 20px;
}
.service-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px; border: 1px solid var(--border); border-radius: 18px; padding: 34px;
  align-items: start;
}
.service-row h2 { font-size: 26px; letter-spacing: -.025em; }
.service-row .summary { font-size: 15px; color: var(--body); margin-top: 8px; line-height: 1.55; }
.pill {
  display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; color: var(--blue); background: var(--pill-bg);
  border-radius: 999px; padding: 6px 12px;
}
.service-row ul {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px 24px; font-size: 15px; line-height: 1.55; color: var(--body);
  padding-left: 20px;
}
.service-row.is-highlight { border-color: var(--blue); background: var(--surface-tint); }
.service-row.is-highlight .pill { background: var(--blue); color: #fff; }

.where-we-work {
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px var(--pad-x) 72px;
}
.where-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px; align-items: start;
}
.where-grid h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.025em; margin-top: 12px; }
.where-grid p { font-size: 17px; line-height: 1.6; color: var(--body); margin-top: 16px; }
.city-list {
  list-style: none; padding: 0; margin-top: 26px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px 24px; font-size: 16px; color: var(--body);
}
.map-frame {
  height: 430px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); background: var(--map-bg);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.pricing {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 60px var(--pad-x);
}
.pricing-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; align-items: center;
}
.pricing h2 { font-size: 30px; letter-spacing: -.025em; }
.pricing p { font-size: 17px; line-height: 1.6; color: var(--body); margin-top: 14px; }
.pricing .fineprint { font-size: 15px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.pricing .btn { justify-self: start; }

/* -------------------------------------------------------- our work page */
.work-body {
  max-width: var(--container); margin: 0 auto; padding: 72px var(--pad-x);
}
/* Each photo is already a before/after composite, so one square card per job.
   Square image in a square box means object-fit never crops the comparison. */
.work-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.work-card { margin: 0; }
.work-shot {
  aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden;
  background: var(--map-bg); border: 1px solid var(--border);
}
.work-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-cap {
  margin-top: 12px; display: flex; align-items: baseline;
  justify-content: space-between; gap: 12px;
}
.work-title { font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.work-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); white-space: nowrap;
}

/* --------------------------------------------------------- contact page */
.contact-grid {
  max-width: var(--container); margin: 0 auto; padding: 72px var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px; align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 26px; }
.contact-label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.contact-phone {
  display: block; font-family: var(--display); font-weight: 600; font-size: 26px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1.35;
}
.contact-phone:hover { color: var(--orange); }
.contact-email { font-size: 18px; font-weight: 500; }
.contact-email:hover { color: var(--blue); }
.contact-address { font-size: 17px; line-height: 1.6; }
.contact-note { font-size: 15px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.contact-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-dark {
  background: var(--ink); color: #fff; font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px;
}
.pill-dark:hover { background: var(--blue-light); }
.pill-orange {
  background: var(--orange); color: #fff; font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px;
}
.pill-orange:hover { background: var(--orange-hover); }

.message-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
}
.message-card h2 { font-size: 22px; letter-spacing: -.02em; }
.message-card .sub { font-size: 14px; color: var(--muted); margin-top: 6px; }
.form-sent { font-size: 14px; color: var(--success); font-weight: 600; margin-top: 16px; }

.about { background: #fff; border-top: 1px solid var(--border); }
.about-head { max-width: var(--container); margin: 0 auto; padding: 72px var(--pad-x) 0; }
.about-head h2 {
  font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.025em; line-height: 1.1;
  max-width: 26ch; margin-top: 12px;
}
.about-grid {
  max-width: var(--container); margin: 0 auto; padding: 34px var(--pad-x) 76px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px; align-items: start;
}
.about-grid p { font-size: 17px; line-height: 1.7; color: var(--body); margin-top: 18px; }
.about-grid p:first-child { font-size: 19px; color: var(--ink); margin-top: 0; }
.pull-quote { border-left: 3px solid var(--blue-light); padding-left: 20px; margin-top: 32px; }
.pull-quote q {
  font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: -.02em;
  line-height: 1.35; display: block;
}
.pull-quote .attrib { font-size: 14px; color: var(--muted); margin-top: 10px; }
.collage { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.collage > * { border-radius: 16px; overflow: hidden; height: 180px; }
.collage > *:first-child { grid-column: 1 / -1; height: 260px; }
.collage img { width: 100%; height: 100%; object-fit: cover; }

.faq { background: var(--surface); border-top: 1px solid var(--border); }
.faq-head { max-width: 820px; margin: 0 auto; padding: 64px var(--pad-x) 0; }
.faq-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.025em; margin-top: 12px; }
.faq-list {
  max-width: 820px; margin: 0 auto; padding: 30px var(--pad-x) 76px;
  display: flex; flex-direction: column;
}
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { font-size: 20px; letter-spacing: -.02em; }
.faq-item p { font-size: 16px; line-height: 1.65; color: var(--body); margin-top: 10px; }

/* ----------------------------------------------------------- form parts */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field-wide { grid-column: 1 / -1; }

input[type="text"], input[type="tel"], input[type="email"], input[type="number"],
input[type="date"], select, textarea {
  font-family: var(--text); font-size: 15px; color: var(--ink); background: #fff;
  border: 1px solid var(--border-input); border-radius: 10px; padding: 13px 14px;
  width: 100%;
}
textarea { resize: vertical; line-height: 1.5; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--focus-ring);
}
::placeholder { color: var(--muted-dark); }

.field-error { font-size: 13px; font-weight: 500; color: var(--orange-hover); }
.has-error input, .has-error select, .has-error textarea { border-color: var(--orange-hover); }

.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-stack input, .form-stack textarea { background: #fff; }
.btn-submit-blue {
  background: var(--blue); color: #fff; font-family: var(--text); font-weight: 600;
  font-size: 16px; padding: 15px 24px; border: 0; border-radius: 999px; cursor: pointer;
  align-self: flex-start;
}
.btn-submit-blue:hover { background: var(--ink); }

/* -------------------------------------------------------- estimate page */
.estimate-grid {
  max-width: var(--container); margin: 0 auto; padding: 64px var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 48px; align-items: start;
}
.fieldset { border: 0; padding: 0; margin: 0 0 40px; }
.fieldset legend {
  font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -.02em;
  padding: 0 0 12px; border-bottom: 1px solid var(--border); width: 100%;
}
.fieldset-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 20px;
}
.pets-panel {
  grid-column: 1 / -1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
}
.pets-panel .question { font-size: 13px; font-weight: 600; }
.pets-panel .choices { display: flex; gap: 18px; }
.pets-panel label {
  display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500;
  cursor: pointer;
}
.pets-panel input[type="radio"] { width: 17px; height: 17px; accent-color: var(--blue); margin: 0; }
.pets-panel .hint { margin-left: auto; font-size: 13px; color: var(--muted); }

.dropzone {
  grid-column: 1 / -1; display: block; border: 1px dashed var(--border-dashed);
  border-radius: 12px; padding: 22px; background: var(--surface-faint); cursor: pointer;
}
.dropzone:hover { border-color: var(--blue); background: #F5FAFF; }
.dropzone .title { display: block; font-size: 14px; font-weight: 600; }
.dropzone .hint { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.dropzone input[type="file"] { margin-top: 14px; font-size: 13px; }

.submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.submit-row .btn { font-size: 17px; padding: 17px 34px; border: 0; }
.submit-row .disclaimer { font-size: 13px; color: var(--muted); max-width: 34ch; line-height: 1.5; }
.form-errors {
  background: #FDF1ED; border: 1px solid #F6D3C7; border-radius: 12px;
  padding: 16px 18px; margin-bottom: 24px; font-size: 14.5px; color: var(--orange-hover);
}

.sidebar { display: flex; flex-direction: column; gap: 16px; }
.card-dark { background: var(--ink); border-radius: 16px; padding: 26px; }
.card-dark h3 { color: #fff; font-size: 19px; letter-spacing: -.02em; }
.card-dark .sub { font-size: 14px; color: var(--muted-dark); margin-top: 8px; line-height: 1.5; }
.card-dark .phone-block {
  display: block; background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 10px;
  padding: 13px 16px; color: #fff; font-weight: 600; font-size: 15px; margin-top: 12px;
}
.card-dark .phone-block:hover { background: rgba(255, 255, 255, .16); }
.card-dark .email-link {
  display: inline-block; margin-top: 14px; font-size: 14px; color: var(--muted-dark);
}
.card-dark .email-link:hover { color: #fff; }
.card { border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.card h3 { font-size: 17px; letter-spacing: -.02em; }
.card ol, .card ul {
  font-size: 14px; line-height: 1.7; color: var(--body); margin-top: 10px; padding-left: 18px;
}
.card ul { list-style: none; padding-left: 0; }

/* ----------------------------------------------------- confirmation page */
.confirm {
  max-width: 640px; margin: 0 auto; padding: 88px var(--pad-x); text-align: center;
}
.confirm .check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--success-bg);
  color: var(--success); font-size: 30px; line-height: 64px; margin: 0 auto;
}
.confirm h2 { font-size: 34px; letter-spacing: -.03em; margin-top: 24px; }
.confirm p { font-size: 17px; line-height: 1.6; color: var(--body); margin-top: 16px; }
.confirm a.inline { color: var(--blue); font-weight: 600; }
.confirm .btn { margin-top: 30px; }
