:root {
  --ink: #17120d;
  --muted: #665d50;
  --paper: #f3eadb;
  --surface: #fff8ea;
  --line: #c9b58f;
  --accent: #5a1724;
  --accent-dark: #2c1117;
  --gold: #a9823f;
  --mist: #e8dcc7;
  --charcoal: #1b1713;
  --green-black: #111b16;
  --shadow: 0 34px 90px rgba(32, 22, 14, 0.2);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 248, 234, 0.5), rgba(255, 248, 234, 0.1)),
    radial-gradient(circle at top left, rgba(169, 130, 63, 0.1), transparent 34rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(243, 234, 219, 0.94);
  border-bottom: 1px solid rgba(169, 130, 63, 0.34);
  box-shadow: 0 10px 30px rgba(27, 23, 19, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 290px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--charcoal);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(169, 130, 63, 0.35), 0 16px 30px rgba(27, 23, 19, 0.15);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 0.95;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  color: #4d4439;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav a,
.header-quote {
  text-decoration: none;
}

.header-quote {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-end;
  padding: clamp(86px, 12vw, 160px) clamp(22px, 6vw, 88px) clamp(44px, 8vw, 92px);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 14, 11, 0.91), rgba(45, 25, 18, 0.66) 48%, rgba(45, 25, 18, 0.16)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(169, 130, 63, 0.42);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-section h2,
.local-section h2,
.contact-section h2,
.quick-quote h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.91;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 250, 241, 0.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.22;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff8ea;
  background: linear-gradient(180deg, #6c1e2d, var(--accent));
  border-color: rgba(169, 130, 63, 0.55);
  box-shadow: 0 16px 40px rgba(44, 17, 23, 0.24);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.copy-client-button {
  justify-self: start;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--accent-dark);
  background: #f7ead4;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.copy-client-button:hover,
.copy-client-button:focus {
  border-color: var(--gold);
}

.button.secondary {
  color: #fff;
  border-color: rgba(176, 138, 74, 0.75);
  background: rgba(255, 250, 241, 0.06);
}

.button.dark {
  color: #fff;
  background: linear-gradient(180deg, #2c251d, var(--charcoal));
  border-color: rgba(169, 130, 63, 0.55);
}

.trust-row {
  padding: 0;
  margin-top: 34px;
}

.trust-row div {
  min-width: 130px;
  padding-right: 28px;
  border-right: 1px solid rgba(176, 138, 74, 0.44);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row dt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.trust-row dd {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
}

.quick-quote,
.confidence-section,
.section,
.split-section,
.local-section,
.contact-section,
.disclosure-section,
.complaints-hero,
.complaints-section,
.plain-hero,
.policy-section,
.site-footer {
  padding-inline: clamp(22px, 6vw, 88px);
}

.quick-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 38px;
  background: linear-gradient(180deg, #efe4d0, var(--mist));
  border-block: 1px solid var(--line);
}

.quick-quote p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.confidence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding-block: clamp(64px, 8vw, 100px);
  background: #f8f0e2;
  border-bottom: 1px solid var(--line);
}

.confidence-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.96;
  font-weight: 600;
}

.confidence-grid {
  display: grid;
  gap: 14px;
}

.confidence-grid article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(32, 22, 14, 0.07);
}

.confidence-grid h3 {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.confidence-grid p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding-block: clamp(72px, 10vw, 124px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section h2,
.split-section h2,
.local-section h2,
.contact-section h2,
.quick-quote h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.96;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 24px 28px;
  background: #efe4d0;
  border: 1px solid var(--line);
}

.section-cta p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.seo-link-panel {
  padding: 22px clamp(22px, 6vw, 88px);
  background: #17120d;
  border-top: 1px solid rgba(169, 130, 63, 0.35);
}

.seo-link-panel h2 {
  margin: 0 0 14px;
  color: rgba(255, 248, 234, 0.84);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.seo-link-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.seo-link-panel a {
  color: rgba(255, 248, 234, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-card {
  min-height: 190px;
  padding: 30px;
  background: linear-gradient(180deg, #fffaf0, var(--surface));
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 20px 44px rgba(32, 22, 14, 0.08);
  position: relative;
}

.service-card::before,
.steps li::before,
.area-list li::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--gold);
}

.service-card h3,
.steps h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.service-card p,
.steps p,
.split-section p,
.local-section p,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

.service-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.split-section,
.local-section,
.contact-section,
.disclosure-section,
.complaints-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 124px);
  border-top: 1px solid var(--line);
}

.fees-section {
  grid-template-columns: minmax(0, 760px);
}

.fee-panel,
.contact-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fee-panel,
.contact-card,
.lead-form {
  border-radius: 2px;
}

.fee-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.fee-panel strong {
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.fee-panel span {
  color: var(--muted);
}

.fee-panel small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.compliance-note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: #f7ead4;
  font-size: 14px;
}

.note-box,
.trust-note {
  margin-top: 24px;
  padding: 20px;
  background: #fff8ea;
  border: 1px solid var(--line);
}

.note-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.note-box p,
.trust-note {
  color: var(--muted) !important;
}

.process-band {
  background:
    linear-gradient(rgba(232, 220, 199, 0.86), rgba(232, 220, 199, 0.86)),
    linear-gradient(90deg, transparent 49%, rgba(169, 130, 63, 0.16) 50%, transparent 51%);
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 248, 234, 0.78);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: var(--accent-dark);
  border: 1px solid rgba(169, 130, 63, 0.55);
  border-radius: 2px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  padding: 20px 18px;
  background: linear-gradient(180deg, #fffaf0, var(--surface));
  border: 1px solid var(--line);
  border-radius: 2px;
  font-weight: 600;
}

.contact-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(17, 27, 22, 0.96), rgba(27, 23, 19, 0.98)),
    var(--charcoal);
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.disclosure-section {
  align-items: start;
  background: #efe4d0;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.disclosure-grid article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(32, 22, 14, 0.07);
}

.disclosure-grid h3 {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.disclosure-grid p {
  margin: 0;
  color: var(--muted);
}

.disclosure-grid a,
.site-footer a {
  color: var(--accent);
  font-weight: 800;
}

.complaints-hero {
  padding-block: clamp(80px, 12vw, 150px) clamp(48px, 8vw, 80px);
  background:
    linear-gradient(90deg, rgba(17, 14, 11, 0.9), rgba(45, 25, 18, 0.68)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  color: #fff;
}

.plain-hero {
  padding-block: clamp(72px, 10vw, 130px) clamp(44px, 7vw, 72px);
  background: linear-gradient(180deg, #efe4d0, var(--paper));
  border-bottom: 1px solid var(--line);
}

.plain-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.94;
}

.plain-hero p {
  max-width: 740px;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 30px);
}

.complaints-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.94;
}

.complaints-hero p {
  max-width: 780px;
  color: rgba(255, 250, 241, 0.84);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 30px);
}

.complaints-section {
  align-items: start;
}

.complaint-form {
  background: var(--surface);
}

.policy-section {
  padding-block: clamp(56px, 8vw, 96px);
}

.faq-section {
  padding: clamp(48px, 7vw, 86px) clamp(22px, 6vw, 88px);
  background: #efe4d0;
  border-top: 1px solid var(--line);
}

.faq-section h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
}

.faq-section details {
  max-width: 920px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq-section details + details {
  margin-top: 12px;
}

.faq-section summary {
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 800;
}

.faq-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.policy-copy {
  max-width: 920px;
  padding: clamp(24px, 5vw, 46px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(32, 22, 14, 0.08);
}

.policy-copy h2 {
  margin: 28px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p {
  margin: 0;
  color: var(--muted);
}

.policy-copy a {
  color: var(--accent);
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  color: var(--ink);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(255, 248, 234, 0.98)),
    var(--surface);
  border: 1px solid rgba(169, 130, 63, 0.52);
  box-shadow: var(--shadow);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

legend {
  padding: 0 8px;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
}

label {
  display: grid;
  gap: 7px;
  color: #3d3429;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3d3429;
}

.help-tip {
  position: relative;
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #fff8ea !important;
  background: #5a1724;
  border: 1px solid #b59655;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  cursor: help;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 234, 0.08);
}

.help-tip:focus {
  outline: 2px solid #b59655;
  outline-offset: 2px;
}

.help-tip::after {
  content: attr(aria-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 20;
  width: min(280px, 72vw);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff8ea;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(32, 22, 14, 0.18);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.help-tip:hover::after,
.help-tip:focus::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid #cdbb9f;
  border-radius: 2px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(176, 138, 74, 0.35);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}


.full {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox-stack {
  gap: 10px;
}

.checkbox-stack > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-stack input {
  width: 18px;
  min-height: 18px;
}

.client-groups {
  display: grid;
  gap: 14px;
}

.client-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
}

.client-group h4 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: #000 !important;
  font-weight: 800;
}

.form-status:not(:empty) {
  padding: 14px 16px;
  color: #000 !important;
  background: #fff8ea;
  border: 1px solid var(--gold);
  border-radius: 2px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 38px;
  background: #15110d;
  color: #fff;
  border-top: 1px solid rgba(169, 130, 63, 0.35);
}

.site-footer p {
  max-width: 620px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a {
  margin-left: 0;
  color: #fff8ea;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .service-grid,
  .steps,
  .confidence-section,
  .split-section,
  .local-section,
  .contact-section,
  .disclosure-section,
  .complaints-section {
    grid-template-columns: 1fr;
  }

  .quick-quote,
  .section-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 700px;
    padding-top: 64px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(18, 15, 13, 0.42), rgba(18, 15, 13, 0.88)),
      url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1000&q=82")
        center / cover;
  }

  .hero-content .eyebrow {
    display: inline-block;
    max-width: 100%;
    padding: 6px 8px;
    background: rgba(18, 15, 13, 0.62);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.86);
  }

  .hero h1 {
    font-size: 46px;
  }

  .trust-row div {
    min-width: 120px;
    border-right: 0;
  }

  .lead-form,
  .area-list,
  .disclosure-grid,
  .client-group,
  fieldset {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
