:root {
  --bg: #080808;
  --bg-soft: #101010;
  --ink: #f7f3ea;
  --muted: #b9b1a4;
  --line: rgba(247, 243, 234, 0.15);
  --gold: #d8bb73;
  --gold-strong: #f1d99a;
  --rose: #d9798f;
  --aqua: #67d8cf;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(125deg, rgba(216, 187, 115, 0.16), transparent 26%),
    linear-gradient(230deg, rgba(103, 216, 207, 0.12), transparent 30%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(241, 217, 154, 0.34);
  border-radius: 8px;
  background: #030303;
  box-shadow: 0 0 34px rgba(216, 187, 115, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.32) translateY(1px);
}

.brand-text {
  display: grid;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.brand-text span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  gap: clamp(10px, 1.6vw, 24px);
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta,
.offer-button,
.submit-button {
  min-height: 44px;
  border: 1px solid rgba(241, 217, 154, 0.42);
  border-radius: 8px;
  color: #120f08;
  background: linear-gradient(135deg, var(--gold-strong), #ffffff 50%, var(--gold));
  box-shadow: 0 12px 34px rgba(216, 187, 115, 0.18);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(620px, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  min-height: calc(100vh - 83px);
  padding: clamp(36px, 7vw, 96px) clamp(18px, 4vw, 54px) 54px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.15rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  background: linear-gradient(105deg, #ffffff 4%, var(--gold-strong) 45%, var(--rose) 76%, var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.8;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-metrics div {
  min-width: 0;
  padding: 18px;
  background: rgba(12, 12, 12, 0.82);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.service-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.service-list article {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(12, 12, 12, 0.9);
}

.service-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-strong);
  font-weight: 900;
}

.service-list h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0;
}

.service-list p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.service-list strong {
  color: var(--gold-strong);
  font-size: 1.05rem;
}

.calculator-shell {
  display: grid;
  gap: 22px;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 8, 0.86);
  box-shadow: var(--shadow);
}

.calculator-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.calculator-head .eyebrow {
  margin-bottom: 8px;
}

.calculator-head h2,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: 0;
}

.quote-form {
  display: grid;
  gap: 22px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.plan-option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 148px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.plan-option:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 217, 154, 0.44);
}

.plan-option.is-active {
  border-color: rgba(241, 217, 154, 0.84);
  background: linear-gradient(145deg, rgba(241, 217, 154, 0.16), rgba(255, 255, 255, 0.055));
}

.plan-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.plan-name {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.plan-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.plan-price {
  align-self: end;
  margin-top: 20px;
  color: var(--gold-strong);
  font-weight: 800;
}

.range-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.range-copy label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.range-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.range-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

output {
  min-width: 54px;
  padding: 8px 12px;
  border: 1px solid rgba(241, 217, 154, 0.38);
  border-radius: 8px;
  color: var(--gold-strong);
  text-align: center;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--gold-strong);
}

.addon-panel {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.addon-panel legend {
  padding: 0 4px;
  color: var(--ink);
  font-weight: 800;
}

.addon-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.addon-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.addon-check {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(241, 217, 154, 0.5);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
}

.addon-check::after {
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #120f08;
  border-bottom: 2px solid #120f08;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}

.addon-option input:checked + .addon-check {
  border-color: var(--gold-strong);
  background: var(--gold-strong);
}

.addon-option input:checked + .addon-check::after {
  opacity: 1;
}

.addon-option:focus-within {
  border-color: rgba(241, 217, 154, 0.72);
  box-shadow: 0 0 0 4px rgba(216, 187, 115, 0.12);
}

.addon-option.is-active {
  border-color: rgba(241, 217, 154, 0.68);
  background: rgba(216, 187, 115, 0.1);
}

.addon-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.addon-copy strong {
  color: var(--ink);
  line-height: 1.28;
  overflow-wrap: break-word;
}

.addon-copy small {
  color: var(--muted);
  line-height: 1.45;
}

.addon-price {
  color: var(--gold-strong);
  font-weight: 900;
  white-space: nowrap;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field input:focus {
  border-color: rgba(241, 217, 154, 0.72);
  box-shadow: 0 0 0 4px rgba(216, 187, 115, 0.12);
}

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

.field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.field span {
  color: var(--ink);
  font-weight: 800;
}

.field-wide {
  grid-column: 1 / -1;
}

textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

textarea:focus {
  border-color: rgba(241, 217, 154, 0.72);
  box-shadow: 0 0 0 4px rgba(216, 187, 115, 0.12);
}

textarea::placeholder {
  color: rgba(185, 177, 164, 0.68);
}

.quote-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  align-items: stretch;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.quote-summary > * {
  min-width: 0;
}

.quote-summary > div:first-child,
.price-breakdown,
.savings-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.summary-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.83rem;
}

#total-price {
  display: block;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
  white-space: normal;
  overflow-wrap: break-word;
}

#summary-line {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.price-breakdown {
  display: grid;
  gap: 8px;
  margin: 0;
}

.price-breakdown div {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: baseline;
  min-width: 0;
  color: var(--muted);
  line-height: 1.35;
}

.price-breakdown dd,
.price-breakdown dt {
  margin: 0;
}

.price-breakdown dd {
  color: var(--ink);
  flex: 0 0 auto;
  font-weight: 800;
  white-space: nowrap;
}

.savings-box {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(103, 216, 207, 0.24);
  background: rgba(103, 216, 207, 0.08);
}

.savings-box strong {
  color: #d8fff9;
  font-size: 0.95rem;
}

.savings-box span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.renewal-list {
  display: grid;
  gap: 4px;
  margin: 4px 0 0;
}

.renewal-list div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: space-between;
}

.renewal-list dt,
.renewal-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.renewal-list dd {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.offer-button,
.submit-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  width: 100%;
  padding: 0 16px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.submit-button {
  justify-self: start;
  width: auto;
  min-width: 210px;
}

.offer-button.is-open {
  background: linear-gradient(135deg, #d8fff9, #ffffff 56%, #c0eee8);
}

.offer-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(241, 217, 154, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 217, 154, 0.1), rgba(103, 216, 207, 0.06)),
    rgba(0, 0, 0, 0.24);
}

.offer-form[hidden] {
  display: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.offer-form-head .eyebrow {
  margin-bottom: 8px;
}

.offer-form-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-status.is-error {
  color: #ffd1d8;
}

.form-status.is-success {
  color: #d8fff9;
}

.included-band,
.work-band,
.calculator-section,
.care-band,
.process-band,
.contact-band {
  padding: clamp(56px, 7vw, 104px) clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.calculator-section .calculator-shell {
  max-width: 1180px;
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 4px;
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-list article {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(13, 13, 13, 0.88);
}

.feature-list span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold-strong);
  font-weight: 900;
}

.feature-list h3,
.process-list span {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.feature-list p,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.work-link {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  min-height: 124px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(241, 217, 154, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 187, 115, 0.14), rgba(103, 216, 207, 0.08)),
    rgba(13, 13, 13, 0.9);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.work-link:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 217, 154, 0.72);
}

.work-link span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.1;
}

.work-link strong,
.text-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(241, 217, 154, 0.42);
  border-radius: 8px;
  color: var(--gold-strong);
  font-size: 0.92rem;
  font-weight: 900;
}

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

.care-card {
  display: grid;
  gap: 24px;
  align-content: start;
  min-width: 0;
  padding: clamp(22px, 2.7vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 13, 13, 0.88);
}

.care-card.is-featured {
  border-color: rgba(241, 217, 154, 0.58);
  background: linear-gradient(145deg, rgba(241, 217, 154, 0.13), rgba(13, 13, 13, 0.9));
}

.care-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0;
}

.care-card strong {
  color: var(--gold-strong);
  font-size: 1.08rem;
}

.care-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.5;
  list-style: none;
}

.care-card li {
  overflow-wrap: break-word;
}

.care-note,
.contact-band p {
  max-width: 880px;
  color: var(--muted);
  line-height: 1.75;
}

.care-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(103, 216, 207, 0.24);
  border-radius: 8px;
  background: rgba(103, 216, 207, 0.08);
}

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

.contact-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  min-height: 164px;
  align-content: space-between;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 13, 13, 0.88);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 217, 154, 0.56);
}

.contact-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border: 1px solid rgba(241, 217, 154, 0.3);
  border-radius: 8px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-card small {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.process-list li {
  min-width: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(241, 217, 154, 0.44);
}

.process-list span {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
  }

  .calculator-shell {
    max-width: 100%;
  }

  .calculator-shell {
    max-width: 900px;
    margin-inline: auto;
  }
}

@media (min-width: 1181px) and (max-width: 1400px) {
  .hero {
    grid-template-columns: minmax(0, 0.7fr) minmax(560px, 1fr);
  }

  h1 {
    font-size: 4.35rem;
  }

  .calculator-head h2,
  .section-heading h2 {
    font-size: 2.45rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 4.2rem;
  }

  .plan-grid,
  .form-grid,
  .feature-list,
  .care-grid,
  .contact-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .plan-option {
    min-height: 136px;
  }

  .feature-list span {
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-text {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding: 28px 14px 44px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-lead {
    margin-bottom: 22px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics div {
    padding: 12px 9px;
  }

  .hero-metrics strong {
    font-size: 1rem;
  }

  .hero-metrics span {
    font-size: 0.72rem;
  }

  .calculator-shell {
    padding: 18px 14px;
  }

  .calculator-head {
    display: grid;
  }

  .quote-summary {
    grid-template-columns: 1fr;
  }

  .submit-button {
    width: 100%;
  }

  .range-control {
    grid-template-columns: 1fr;
  }

  .addon-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .addon-price {
    grid-column: 2;
    justify-self: start;
  }

  output {
    justify-self: start;
  }

  #total-price {
    white-space: normal;
  }

  .included-band,
  .work-band,
  .calculator-section,
  .care-band,
  .process-band {
    padding: 48px 14px;
  }

  .contact-band {
    padding: 48px 14px;
  }

  .work-link {
    display: grid;
  }

  .site-footer {
    display: grid;
    padding: 24px 14px;
  }
}
