:root {
  --color-page: #f4f3f2;
  --color-surface: #fbfbfb;
  --color-white: #fdfdfd;
  --color-evergreen: #04281b;
  --color-green: #1c3d2b;
  --color-muted: #b0b0a3;
  --color-border: #e4e3df;
  --color-text: #10261d;
  --color-subtle-text: #5e6863;
  --color-gold: #d89a0c;
  --color-gold-soft: #fbf4e4;
  --color-success-soft: #e6f0e9;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --shadow-card: 0 2px 10px rgba(4, 40, 27, 0.05);
  --radius: 9px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  background: var(--color-page);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(216, 154, 12, 0.55);
  outline-offset: 2px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  width: 100%;
}

.sidebar {
  width: 265px;
  flex: 0 0 265px;
  min-height: 100vh;
  padding: 28px 16px 30px;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  background: radial-gradient(circle at 90% 42%, rgba(23, 91, 65, 0.45), transparent 35%), linear-gradient(160deg, #053c2c 0%, var(--color-evergreen) 70%);
}

.brand {
  display: block;
  padding: 0 4px;
}

.brand img {
  width: 215px;
  object-fit: contain;
}

.primary-nav {
  display: grid;
  gap: 6px;
  margin-top: 38px;
}

.primary-nav a {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fbfcfc;
  font-size: 16px;
  font-weight: 500;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.primary-nav a.active {
  color: #ffd229;
  background: rgba(115, 151, 70, 0.3);
}

.primary-nav svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.insight-card {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(216, 154, 12, 0.55);
  border-radius: 10px;
  background: rgba(2, 31, 22, 0.3);
}

.insight-card h2 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
}

.insight-card p {
  margin-bottom: 14px;
  color: #fbfcfc;
  font-size: 14px;
  line-height: 1.55;
}

.insight-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 7px;
  background: rgba(27, 89, 62, 0.65);
  font-size: 14px;
  font-weight: 700;
}

.insight-card svg {
  width: 16px;
  height: 16px;
}

.sidebar-photo {
  margin-top: 16px;
  height: 150px;
  border-radius: 12px;
  background: url(assets/sidebar-house.png) center/cover no-repeat;
}

.page-shell {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  min-height: 76px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.search {
  width: min(420px, 40vw);
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
}

.search svg {
  flex: 0 0 auto;
}

.search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--color-text);
  background: transparent;
  font-size: 15px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.date-button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.date-button svg:last-child {
  width: 16px;
}

.notification-button {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
}

.notification-button span {
  position: absolute;
  top: -5px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
}

.account {
  min-width: 225px;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 10px;
}

.account img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

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

.account strong {
  font-size: 15px;
}

.account small {
  color: var(--color-subtle-text);
  font-size: 13px;
}

.account svg {
  width: 16px;
}

main {
  min-width: 0;
  flex: 1;
  background: var(--color-white);
}

.content-wrap {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 24px 20px 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-subtle-text);
  font-size: 14px;
}

.breadcrumbs svg {
  width: 15px;
  height: 15px;
}

.breadcrumbs span {
  color: var(--color-text);
  font-weight: 700;
}

.page-heading {
  margin: 4px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-heading h1 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}

.heading-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(4, 40, 27, 0.06);
}

.button-secondary {
  border-color: var(--color-border);
  color: var(--color-text);
  background: var(--color-white);
}

.button-outline {
  border-color: #315d49;
  color: var(--color-evergreen);
  background: var(--color-white);
}

.button-primary {
  color: white;
  background: var(--color-evergreen);
  box-shadow: 0 4px 10px rgba(4, 40, 27, 0.18);
}

.button-small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 14px;
}

.job-summary {
  display: grid;
  grid-template-columns: 185px minmax(360px, 1.6fr) minmax(160px, 0.8fr) minmax(135px, 0.55fr) minmax(240px, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.residence-photo {
  width: 100%;
  height: 100%;
  min-height: 190px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.residence-info {
  padding: 18px 20px;
}

.title-line {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.title-line h2 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.badge-success {
  color: #28523e;
  background: var(--color-success-soft);
}

.address {
  margin: 8px 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.metadata {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.metadata span {
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--color-page);
  color: #3d4742;
  font-size: 12px;
  white-space: nowrap;
}

.property-notes {
  margin-top: 20px;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  border-top: 1px solid var(--color-border);
}

.property-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.property-notes svg {
  width: 15px;
  height: 15px;
  color: #176144;
}

.summary-section {
  padding: 14px 16px;
  border-left: 1px solid var(--color-border);
}

.summary-section h3 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.summary-section dl {
  margin-bottom: 0;
}

.summary-section dl div {
  margin-bottom: 8px;
}

.summary-section dt {
  color: var(--color-subtle-text);
  font-size: 12px;
}

.summary-section dd {
  margin-left: 0;
  font-size: 13px;
  line-height: 1.35;
}

.summary-section dd strong,
.summary-section dd small {
  display: block;
}

.summary-section dd small {
  font-size: 12px;
}

.crew-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.crew-avatars img,
.crew-avatars span {
  width: 32px;
  height: 32px;
  margin-right: -5px;
  border: 2px solid white;
  border-radius: 50%;
  object-fit: cover;
}

.crew-avatars span {
  display: grid;
  place-items: center;
  margin-left: 5px;
  color: var(--color-subtle-text);
  background: var(--color-page);
  font-size: 11px;
}

.schedule dl div {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--color-border);
}

.schedule dl div:last-child {
  border-bottom: 0;
}

.schedule dd {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 700;
}

.route p {
  margin-bottom: 8px;
  color: var(--color-subtle-text);
  font-size: 13px;
}

.route img {
  width: 100%;
  min-height: 125px;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  object-fit: cover;
}

.dashboard-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1.24fr) minmax(0, 1fr);
  align-items: start;
  gap: 11px;
}

.left-column,
.middle-column,
.right-column {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.card h2 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-person {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.contact-person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-person strong,
.contact-person a {
  display: block;
  overflow-wrap: anywhere;
  font-size: 12px;
}

.stacked-details {
  margin-bottom: 12px;
}

.stacked-details div {
  margin-bottom: 10px;
}

.stacked-details dt {
  color: var(--color-subtle-text);
  font-size: 12px;
}

.stacked-details dd {
  margin-left: 0;
  font-size: 14px;
  font-weight: 700;
}

[aria-labelledby="quote-title"] .stacked-details > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

[aria-labelledby="quote-title"] .stacked-details > div:first-child dd {
  font-size: 15px;
}

.card-link {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: #14583f;
  background: var(--color-white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.card-link svg {
  width: 16px;
  height: 16px;
}

.card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card-title-row a,
.card-title-row span {
  color: #14583f;
  font-size: 12px;
  font-weight: 700;
}

.text-card p {
  margin-bottom: 0;
  color: #34423c;
  font-size: 13px;
  line-height: 1.55;
}

.checklist-card {
  padding-bottom: 8px;
}

.checklist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.checklist-header h2 {
  margin-bottom: 2px;
  font-size: 18px;
}

.checklist-header p {
  margin-bottom: 0;
  color: var(--color-subtle-text);
  font-size: 13px;
}

.progress {
  width: 50%;
  height: 6px;
  margin: 4px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8e5;
}

.progress span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: #0b6748;
}

.checklist {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  min-height: 34px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto 30px;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
}

.checklist li.current {
  grid-template-columns: 18px minmax(0, 1fr) auto;
  margin: 0 -5px;
  padding: 7px 9px;
  border: 1px solid #f0e3c7;
  border-radius: 6px;
  background: var(--color-gold-soft);
  font-weight: 700;
}

.checklist .check {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 1px solid #9aa59f;
  border-radius: 50%;
}

.checklist .complete .check {
  border-color: #0a6848;
  color: white;
  background: #0a6848;
}

.checklist .check svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

.checklist .complete > span:nth-child(2) {
  color: #69716d;
  text-decoration: line-through;
}

.checklist time {
  font-size: 12px;
}

.checklist b {
  width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-page);
  font-size: 11px;
}

.checklist li button {
  padding: 5px 14px;
  border: 1px solid #cfded6;
  border-radius: 5px;
  color: #176144;
  background: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.utilities-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr 1.05fr;
  padding: 0;
}

.utilities-card > section {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--color-border);
}

.utilities-card > section > h2,
.photos-section h2 {
  font-size: 13px;
}

.utilities-card > section:last-child {
  border-right: 0;
}

.compact div {
  margin-bottom: 8px;
}

.compact dd {
  font-size: 12px;
  font-weight: 500;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 8px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  border-radius: 5px;
  object-fit: cover;
}

.progress-panel {
  padding: 14px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.status-grid article {
  min-width: 0;
  padding: 14px 5px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.status-grid img {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.status-grid h2 {
  margin-bottom: 7px;
  font-size: 13px;
  white-space: nowrap;
}

.status-grid strong,
.status-grid span {
  display: block;
  font-size: 12px;
}

.status-grid span {
  margin-top: 3px;
  color: var(--color-subtle-text);
}

.timeline {
  padding-top: 13px;
}

.timeline ol {
  margin-bottom: 6px;
  padding-left: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  padding: 0 0 12px;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: 0;
  width: 1px;
  background: #c9ddd1;
}

.timeline li img {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.timeline time,
.timeline strong,
.timeline span {
  display: block;
  font-size: 12px;
}

.timeline time,
.timeline span {
  color: var(--color-subtle-text);
}

.next-step {
  margin: 0 0 0 41px;
  font-size: 12px;
  font-weight: 700;
}

.materials-card dl {
  margin-bottom: 12px;
}

.materials-card dl div {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
}

.materials-card dt,
.materials-card dd {
  font-size: 12px;
}

.materials-card dt::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  border: 1px solid #39715a;
  border-radius: 50%;
}

.materials-card dd {
  margin-left: 0;
  font-weight: 700;
}

.action-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}

.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1240px) {
  .job-summary {
    grid-template-columns: 180px minmax(270px, 1.3fr) minmax(190px, 0.8fr) minmax(180px, 0.7fr);
  }

  .route {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .route h3,
  .route p {
    margin-bottom: 0;
  }

  .route img {
    min-height: 130px;
  }

  .dashboard-grid {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .right-column {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }
}

@media (max-width: 1020px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    width: 100%;
    min-height: 0;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
  }

  .brand img {
    width: 185px;
  }

  .primary-nav {
    display: flex;
    margin-top: 0;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .primary-nav a {
    min-width: max-content;
  }

  .insight-card {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .topbar {
    padding-inline: 20px;
  }

  .account {
    min-width: auto;
  }

  .account div,
  .account > svg {
    display: none;
  }

  .search {
    width: min(460px, 52vw);
  }

  .job-summary {
    grid-template-columns: 220px 1fr 1fr;
  }

  .residence-info {
    grid-column: 2 / -1;
  }

  .summary-section {
    border-top: 1px solid var(--color-border);
  }

  .crew {
    border-left: 0;
  }

  .route {
    grid-column: auto;
    display: block;
    border-left: 1px solid var(--color-border);
  }

  .route p {
    margin-bottom: 8px;
  }

  .dashboard-grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .right-column {
    grid-template-columns: 1fr;
  }

  .utilities-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photos-section {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-border);
  }
}

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

  .brand {
    margin: 0 auto;
  }

  .primary-nav {
    width: 100%;
  }

  .insight-card {
    grid-column: auto;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .search {
    width: 100%;
  }

  .topbar-actions {
    justify-content: space-between;
  }

  .date-button {
    flex: 1;
  }

  .content-wrap {
    padding-inline: 14px;
  }

  .page-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .heading-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

  .residence-photo {
    grid-column: 1 / -1;
    max-height: 300px;
  }

  .residence-info {
    grid-column: 1 / -1;
  }

  .crew,
  .route {
    border-left: 0;
  }

  .schedule,
  .route {
    border-left: 1px solid var(--color-border);
  }

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

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .right-column {
    grid-column: auto;
  }

  .left-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checklist li {
    grid-template-columns: 18px minmax(0, 1fr) auto;
  }

  .checklist li b {
    display: none;
  }

  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner > div {
    justify-content: stretch;
  }

  .footer-inner > div .button {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .date-button {
    font-size: 13px;
  }

  .account {
    grid-template-columns: 38px;
  }

  .account img {
    width: 38px;
    height: 38px;
  }

  .page-heading h1 {
    font-size: 40px;
  }

  .heading-actions .button {
    flex: 1 1 45%;
  }

  .job-summary {
    display: block;
  }

  .summary-section {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .left-column {
    grid-template-columns: 1fr;
  }

  .checklist-header {
    align-items: stretch;
    flex-direction: column;
  }

  .progress {
    width: 100%;
    margin-top: 10px;
  }

  .checklist li,
  .checklist li.current {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .checklist time,
  .checklist li button {
    grid-column: 2;
    justify-self: start;
  }

  .utilities-card {
    grid-template-columns: 1fr;
  }

  .utilities-card > section {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .utilities-card > section:last-child {
    border-bottom: 0;
  }

  .photos-section {
    grid-column: auto;
    border-top: 0;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner > div {
    flex-direction: column;
  }
}