.site-nav a[aria-current] {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.services-page [hidden] {
  display: none !important;
}
.services-hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  padding-top: 52px;
  padding-bottom: 70px;
  align-items: center;
}
.services-hero h1 {
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 400;
  letter-spacing: -2.5px;
  line-height: 1.08;
  margin: 22px 0;
}
.services-hero .lead {
  font-size: 18px;
  max-width: 480px;
  line-height: 1.7;
}
.day-card {
  background: #e9eddf;
  border: 1px solid #d8ddcd;
  border-radius: 16px;
  padding: 30px 32px;
  transform: rotate(1deg);
}
.day-card h2 {
  font-size: 36px;
  margin: 16px 0 26px;
}
.day-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.day-card li {
  position: relative;
  border-left: 1px solid #9caa85;
  padding: 0 0 24px 24px;
  margin-left: 5px;
}
.day-card li:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #536b3d;
}
.day-card li:last-child {
  padding-bottom: 0;
}
.day-card li span {
  display: block;
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #526340;
}
.day-card li strong {
  display: block;
  font-size: 14px;
  margin: 5px 0;
}
.day-card li p {
  font-size: 12px;
  margin: 0;
  color: #526340;
}
.example-note {
  font-size: 10px;
  color: #526340;
  margin: 22px 0 0;
}
.catalogue {
  padding-bottom: 55px;
}
.finder {
  background: #eef0e5;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 18px;
}
.finder label {
  font-size: 14px;
}
.search-row {
  display: flex;
  gap: 12px;
}
.search-row input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #9aa88e;
  border-radius: 6px;
  background: #fffefa;
  color: var(--ink);
  font-size: 16px;
}
.search-row button {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid #a6b099;
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 12px;
}
.category-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.category-filters button {
  padding: 8px 12px;
  border-radius: 30px;
  border: 1px solid #b8c1aa;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}
.category-filters button:hover {
  background: #e0e7cf;
}
.category-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.results-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  margin-top: 18px;
  align-items: center;
}
.results-bar p {
  margin: 0;
}
.results-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.scope-note {
  font-size: 12px;
  max-width: 790px;
  color: var(--muted);
  margin: 20px 0 42px;
}
.service-group {
  margin-bottom: 48px;
}
.group-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.group-heading h3 {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.6px;
  margin: 6px 0 0;
  line-height: 1.3;
}
.group-heading .eyebrow {
  color: #526340;
  margin: 0;
}
.group-heading > span {
  font-size: 10px;
  letter-spacing: 1px;
  white-space: nowrap;
  color: #526340;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.service-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 23px;
  display: flex;
  flex-direction: column;
}
.service-card h4 {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.35px;
  margin: 0 0 12px;
}
.service-card > p {
  font-size: 13px;
  color: #56645b;
  margin: 0 0 20px;
  line-height: 1.8;
  min-height: 94px;
}
.service-card details {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
}
.service-card summary {
  font-size: 12px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  list-style: none;
}
.service-card summary::-webkit-details-marker {
  display: none;
}
.service-card details[open] summary span {
  transform: rotate(45deg);
}
.service-detail {
  padding: 0 0 14px;
}
.service-detail h5 {
  font-size: 9px;
  letter-spacing: 1px;
  margin: 12px 0 6px;
  color: #526340;
}
.service-detail p {
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}
.add-service {
  padding: 10px 12px;
  border: 1px solid #c4ceb4;
  background: #f0f3e7;
  border-radius: 5px;
  text-align: left;
  color: var(--ink);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.add-service[aria-pressed="true"] {
  background: var(--lime);
  border-color: #91a85f;
}
.shortlist-section {
  background: #e9eddf;
  padding: 54px 0;
  border-block: 1px solid var(--line);
}
.shortlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.shortlist-layout h2 {
  font-size: 40px;
}
.shortlist-layout > div > p {
  font-size: 14px;
  max-width: 440px;
}
.shortlist-layout .small-note {
  font-size: 11px;
  color: #526340;
}
.shortlist-panel {
  background: #fffefa;
  border: 1px solid #cfd7bf;
  border-radius: 10px;
  padding: 26px;
  align-self: start;
}
.shortlist-panel h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.shortlist-panel p {
  font-size: 13px;
}
.shortlist-panel ul {
  list-style: none;
  padding: 0;
  max-height: 320px;
  overflow: auto;
}
.shortlist-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 13px;
}
.shortlist-panel li button {
  border: 0;
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
  color: #56645b;
  padding: 5px;
}
#shortlist-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.clear-list {
  border: 0;
  background: transparent;
  padding: 6px 0;
  color: #56645b;
}
.faq-section {
  max-width: 900px;
  padding-bottom: 70px;
}
.faq-section h2 {
  margin-bottom: 25px;
}
.faq-section details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-section summary {
  font-size: 16px;
}
.faq-section details p {
  font-size: 14px;
  color: var(--muted);
  max-width: 700px;
}
.services-page .pilot h3 {
  font-weight: 400;
  font-size: 22px;
  margin: 0;
}
.services-page summary:focus-visible {
  outline: 3px solid #b27d32;
  outline-offset: 4px;
}
.services-page #no-results {
  padding: 20px 0 40px;
}
@media (max-width: 1000px) {
  .services-hero {
    gap: 35px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shortlist-layout {
    gap: 35px;
  }
}
@media (max-width: 680px) {
  .services-hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 42px;
    gap: 36px;
  }
  .services-hero h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }
  .services-hero .lead {
    font-size: 16px;
  }
  .services-hero .actions {
    align-items: flex-start;
  }
  .day-card {
    transform: none;
    padding: 24px;
  }
  .day-card h2 {
    font-size: 32px;
  }
  .services-page .principles > .wrap {
    font-size: 10px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card > p {
    min-height: 0;
  }
  .finder {
    padding: 18px;
  }
  .search-row {
    flex-wrap: wrap;
  }
  .search-row input {
    flex-basis: 100%;
    font-size: 16px;
  }
  .category-filters button {
    font-size: 11px;
  }
  .results-bar {
    align-items: flex-start;
  }
  .group-heading h3 {
    font-size: 23px;
  }
  .shortlist-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .shortlist-layout h2 {
    font-size: 34px;
  }
  .group-heading {
    align-items: flex-start;
  }
  .service-group {
    margin-bottom: 35px;
  }
  .shortlist-panel {
    padding: 20px;
  }
  .faq-section summary {
    font-size: 15px;
  }
}
