@charset "UTF-8";
:root {
  --page: #fff;
  --surface: #f5f5f5;
  --surface-strong: #eceeeb;
  --ink: #20211f;
  --muted: #73756e;
  --graphite: #222321;
  --line: #e7e8e5;
  --lime: #c7f464;
  --lime-hover: #b7e84c;
  --radius: 28px;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font: 15px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.has-dialog {
  overflow: hidden;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
a {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
svg {
  display: block;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.wrap {
  width: min(1200px, calc(100% - 88px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-200%);
  background: var(--lime);
  padding: 12px 20px;
  border-radius: 10px;
}
.skip-link:focus {
  transform: translateY(0);
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
.site-header {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1;
}
.brand-symbol {
  background: var(--lime);
  color: var(--ink);
  width: 35px;
  height: 35px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 750;
  margin-right: 10px;
  padding-bottom: 6px;
}
.brand-dot {
  color: var(--ink);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
  color: #686b64;
}
.site-nav a:hover {
  color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid transparent;
  border-radius: 13px;
  min-height: 54px;
  padding: 15px 24px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.button-primary {
  background: var(--lime);
  color: var(--ink);
}
.button-primary:hover {
  background: var(--lime-hover);
}

.button-outline {
  border-color: #d9dbd6;
  background: #fff;
  color: var(--ink);
}
.button-outline:hover {
  background: var(--lime);
  border-color: var(--lime);
}

.button-wide {
  width: 100%;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--muted);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 1fr);
  gap: 20px;
  padding: 12px 0 0;
}
.hero-copy {
  padding: 42px 45px 30px;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 480px;
}
.hero h1 {
  font-size: clamp(46px, 4.7vw, 68px);
  line-height: 1.06;
  letter-spacing: -3.2px;
  margin: 0 0 24px;
  max-width: 630px;
  overflow-wrap: anywhere;
}
.hero-tagline {
  font-size: 15px;
  line-height: 1.85;
  color: #6f716c;
  max-width: 430px;
  white-space: pre-line;
  margin-bottom: 27px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
  margin-bottom: 38px;
}
.text-link {
  font-size: 13px;
  text-decoration: none;
  padding-block: 4px;
}
.text-link:hover {
  color: var(--muted);
}
.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 10px;
  color: #82857d;
  margin: auto 0 0;
}
.hero-location .icon {
  width: 14px;
  height: 14px;
  margin-top: 2px;
}
.hero-sidebar {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
  min-width: 0;
}
.hero-summary {
  padding: 29px 30px 22px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: #fff;
}
.hero-summary h2 {
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: -1.25px;
  font-weight: 500;
  margin: 0 0 24px;
}
.hero-service-preview {
  display: grid;
}
.preview-service {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #41433f;
  font-size: 11px;
  line-height: 1.55;
  text-decoration: none;
}
.preview-service:hover .preview-name {
  color: var(--lime);
}
.preview-name {
  max-width: 65%;
}
.preview-price {
  white-space: nowrap;
  color: #c5c9c0;
}
.summary-empty {
  font-size: 12px;
  color: #b3b8ab;
  line-height: 1.8;
}
.summary-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  text-decoration: none;
  padding-top: 18px;
  border-top: 1px solid #41433f;
  color: var(--lime);
}
#hero-service-count {
  display: inline-block;
  color: #aeb4a6;
  padding-left: 6px;
}
.hero-schedule {
  background: var(--lime);
  border-radius: var(--radius);
  padding: 24px 30px 25px;
}
.schedule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  margin-bottom: 10px;
}
.hero-schedule strong {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.2;
  display: block;
}
#hero-work-days {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: #435322;
}
.section {
  padding-top: 76px;
  scroll-margin-top: 25px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 29px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
h2 {
  font-size: 42px;
  letter-spacing: -1.8px;
  line-height: 1.13;
  margin-bottom: 0;
}
.section-aside {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 3px;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  padding: 27px 27px 22px;
  border-radius: 24px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 305px;
}
.service-info {
  flex: 1;
}
.service-info h3 {
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.service-info p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 24px;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.service-price {
  font-size: 27px;
  letter-spacing: -1.1px;
  white-space: nowrap;
  margin-bottom: 1px;
  font-weight: 550;
}
.service-slots {
  width: 100%;
  min-height: 43px;
  font-size: 11px;
  gap: 10px;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 11px;
  margin-top: 18px;
}
.service-slots .icon {
  width: 16px;
  height: 16px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.portfolio-item {
  margin: 0;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
}
.portfolio-image-wrap {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
  background: #eceeeb;
}
.portfolio-item:nth-child(2n) .portfolio-image-wrap {
  background: #e5e7e3;
}
.portfolio-item:nth-child(3n) .portfolio-image-wrap {
  background: #2f312d;
  color: #a9ada3;
}
.portfolio-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.portfolio-item:hover .portfolio-image {
  transform: scale(1.025);
}
.portfolio-placeholder {
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: #94998d;
}
.portfolio-placeholder .icon {
  width: 29px;
  height: 29px;
  stroke-width: 1.15;
}
.portfolio-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 23px 25px 26px;
}
.portfolio-caption h3 {
  font-size: 15px;
  font-weight: 550;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
.portfolio-caption p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
  gap: 20px;
}
.about-copy {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 43px;
  display: flex;
  flex-direction: column;
}
.about-copy h2 {
  font-size: 49px;
  margin-bottom: 28px;
}
.about-description {
  font-size: 13px;
  line-height: 1.95;
  white-space: pre-line;
  color: var(--muted);
  max-width: 490px;
  overflow-wrap: anywhere;
}
.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  margin-top: auto;
  padding-top: 34px;
}
.staff-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.staff-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e6e9e1;
  color: var(--ink);
  font-size: 14px;
  font-weight: 550;
}
.staff-name {
  display: block;
  font-size: 12px;
  font-weight: 550;
  overflow-wrap: anywhere;
}
.staff-role {
  display: block;
  font-size: 10px;
  color: var(--muted);
  overflow-wrap: anywhere;
  margin-top: 2px;
}
.contact-card {
  background: var(--graphite);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  scroll-margin-top: 28px;
}
.contact-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 27px;
}
.contact-card-top h3 {
  font-size: 31px;
  letter-spacing: -1px;
  font-weight: 500;
  margin: 0;
}
.contact-card-symbol {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid #616559;
  border-radius: 50%;
  transform: rotate(-35deg);
  color: var(--lime);
}
.contact-details {
  display: grid;
  gap: 16px;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.8;
}
.contact-line .icon {
  width: 16px;
  height: 16px;
  color: #aeb5a2;
  margin-top: 3px;
}
.contact-line a {
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-line a:hover {
  color: var(--lime);
}
.contact-empty {
  color: #b4b8ad;
  font-size: 12px;
}
.work-hours {
  border-top: 1px solid #484c42;
  margin-top: 25px;
  padding-top: 22px;
}
.work-hours h4 {
  font-size: 11px;
  font-weight: 500;
  margin: 0 0 15px;
  display: flex;
  gap: 11px;
  align-items: center;
}
.work-hours h4 .icon {
  width: 16px;
  height: 16px;
  color: #b0b6a7;
}
.work-hours dl {
  margin: 0;
  font-size: 11px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0;
  color: #aeb4a6;
}
.hours-row dd {
  margin: 0;
  color: #edf0e8;
}
.timezone-note {
  font-size: 9px;
  color: #a3aa99;
  margin: 15px 0 22px;
}
.contact-card .button {
  min-height: 46px;
  width: 100%;
  font-size: 12px;
  padding-inline: 18px;
  gap: 16px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  padding: 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-stars {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  padding: 5px 8px;
  margin-bottom: 22px;
}
.review-quote {
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 25px;
  flex: 1;
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.review-author {
  font-size: 11px;
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-wrap: anywhere;
}
.review-author:before {
  content: "";
  width: 15px;
  height: 1px;
  background: #a8ad9e;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-block: 33px;
  font-size: 10px;
  color: var(--muted);
}
.footer-master {
  max-width: 38%;
  overflow-wrap: anywhere;
}
.footer-product a {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.footer-year {
  font-variant-numeric: tabular-nums;
}
.empty-state {
  border: 1px dashed #cfd4c7;
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
}
.empty-state h3 {
  font-size: 23px;
  margin: 0 0 8px;
}
.empty-state p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.page-state {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 70px;
}
.page-state h1 {
  font-size: 45px;
  line-height: 1.15;
  letter-spacing: -1.8px;
}
.page-state p {
  color: var(--muted);
  max-width: 480px;
}
.page-state .button {
  margin-top: 12px;
}
.loading-orbit {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 3px solid var(--surface-strong);
  border-top-color: var(--graphite);
  animation: rotate 1s linear infinite;
  margin-bottom: 20px;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.availability-dialog {
  width: min(540px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  padding: 27px 32px 32px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 25px 100px #181d1630;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.availability-dialog::backdrop {
  background: #20221d80;
  backdrop-filter: blur(3px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dialog-top .eyebrow {
  font-size: 11px;
  margin: 0;
}
.icon-button {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
}
.icon-button:hover {
  background: var(--surface-strong);
}
.icon-button .icon {
  width: 17px;
  height: 17px;
}
.availability-dialog h2 {
  font-size: 32px;
  letter-spacing: -1.25px;
  margin: 0 0 10px;
}
.dialog-intro {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 25px;
  overflow-wrap: anywhere;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.field label {
  font-size: 11px;
  font-weight: 550;
}
.field input,
.field select {
  width: 100%;
  min-height: 47px;
  border: 1px solid #dcdfd6;
  background: var(--surface);
  border-radius: 11px;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
  min-width: 0;
}
.field select {
  padding-right: 28px;
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 7px 0 12px;
}
.slots-header h3 {
  font-size: 12px;
  font-weight: 550;
  margin: 0;
}
.slots-header span {
  font-size: 9px;
  color: var(--muted);
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 235px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}
.slot-chip {
  display: grid;
  place-items: center;
  padding: 10px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  min-height: 42px;
  background: #f0f3eb;
  border: 1px solid #e3e8da;
  border-radius: 10px;
  cursor: default;
}
.slots-status {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.slots-status:not(:empty) {
  padding: 17px 0 20px;
}
.slots-status button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  text-decoration: underline;
  display: block;
  margin-top: 5px;
}
.availability-note {
  background: var(--surface);
  border-radius: 13px;
  padding: 14px 16px;
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
  margin: 23px 0 18px;
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(290px, 1fr);
    gap: 16px;
  }
  .hero-copy {
    padding: 34px 32px 28px;
    min-height: 480px;
  }
  .hero h1 {
    font-size: 55px;
    letter-spacing: -2.5px;
  }
  .hero-summary {
    padding: 26px;
  }
  .hero-summary h2 {
    font-size: 28px;
  }
  .hero-schedule {
    padding: 23px 26px;
  }
  .hero-schedule strong {
    font-size: 30px;
  }
  .hero-actions {
    gap: 22px;
  }
  .hero-sidebar {
    gap: 16px;
  }
  .services-list,
  .portfolio-grid,
  .reviews-grid {
    gap: 16px;
  }
  .service-card {
    padding: 24px 22px 22px;
  }
  .service-info h3 {
    font-size: 18px;
  }
  .about-section {
    gap: 16px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 1fr);
  }
  .about-copy {
    padding: 35px;
  }
  .about-copy h2 {
    font-size: 43px;
  }
  .contact-card {
    padding: 29px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .site-header {
    height: auto;
    min-height: 81px;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 18px 12px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-symbol {
    width: 31px;
    height: 31px;
    font-size: 28px;
    border-radius: 9px;
    margin-right: 8px;
  }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 6px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 5px;
    gap: 15px;
  }
  .hero-copy {
    min-height: 0;
    padding: 30px 29px;
    border-radius: 24px;
  }
  .hero h1 {
    font-size: clamp(42px, 7.8vw, 58px);
    letter-spacing: -2.4px;
    max-width: 550px;
    margin-bottom: 19px;
  }
  .hero-tagline {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .hero-actions {
    gap: 28px;
    margin-bottom: 31px;
  }
  .hero-location {
    margin-top: 19px;
    font-size: 9px;
  }
  .hero-sidebar {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr;
    gap: 15px;
  }
  .hero-summary {
    padding: 23px;
    border-radius: 24px;
  }
  .hero-summary h2 {
    font-size: 26px;
    letter-spacing: -1px;
    margin-bottom: 19px;
  }
  .preview-service {
    font-size: 10px;
    padding-block: 10px;
  }
  .summary-all {
    font-size: 10px;
    padding-top: 14px;
  }
  .hero-schedule {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 23px;
    border-radius: 24px;
  }
  .schedule-top {
    margin-bottom: auto;
    font-size: 10px;
    align-items: flex-start;
  }
  .hero-schedule strong {
    font-size: 29px;
    margin-top: 45px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }
  #hero-work-days {
    font-size: 9px;
  }
  .section {
    padding-top: 48px;
  }
  .section-heading {
    margin-bottom: 24px;
    gap: 18px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .section-heading h2 {
    font-size: 33px;
    letter-spacing: -1.4px;
  }
  .section-aside {
    font-size: 10px;
    max-width: 145px;
    line-height: 1.7;
  }
  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .service-card {
    padding: 21px;
    min-height: 285px;
    border-radius: 21px;
  }
  .service-info h3 {
    font-size: 18px;
  }
  .service-info p {
    font-size: 11px;
    margin-bottom: 18px;
  }
  .service-price {
    font-size: 24px;
  }
  .service-slots {
    font-size: 10px;
    margin-top: 15px;
    padding-inline: 12px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .portfolio-item {
    border-radius: 20px;
  }
  .portfolio-caption {
    padding: 18px;
  }
  .portfolio-caption h3 {
    font-size: 13px;
  }
  .portfolio-caption p {
    font-size: 10px;
  }
  .portfolio-placeholder {
    padding: 20px;
  }
  .portfolio-placeholder .icon {
    width: 24px;
    height: 24px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-copy {
    padding: 29px;
    border-radius: 24px;
  }
  .about-copy h2 {
    font-size: 39px;
    margin-bottom: 23px;
  }
  .about-description {
    max-width: none;
    font-size: 12px;
  }
  .staff-list {
    padding-top: 26px;
    gap: 21px 26px;
  }
  .contact-card {
    padding: 29px;
    border-radius: 24px;
  }
  .contact-card-top h3 {
    font-size: 30px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .review-card {
    padding: 25px;
  }
  .review-stars {
    margin-bottom: 18px;
  }
  .review-quote {
    font-size: 13px;
    margin-bottom: 21px;
  }
  .reviews-section .section-heading {
    display: block;
  }
  .reviews-section .section-aside {
    max-width: none;
    margin: 13px 0 0;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 9px;
    gap: 15px;
    padding-block: 26px;
  }
  .footer-master {
    max-width: 70%;
  }
  .footer-product {
    order: 3;
    flex-basis: 100%;
  }
  .footer-product a {
    font-size: 13px;
  }
  .footer-year {
    margin-left: auto;
  }
  .page-state h1 {
    font-size: 36px;
  }
  .field input,
  .field select {
    font-size: 16px;
  }
}
@media (max-width: 490px) {
  .hero-sidebar {
    grid-template-columns: 1fr;
  }
  .hero-summary {
    padding: 26px;
  }
  .hero-summary h2 {
    font-size: 30px;
  }
  .preview-service {
    font-size: 12px;
  }
  .summary-all {
    font-size: 11px;
  }
  .hero-schedule {
    padding: 23px 26px;
  }
  .schedule-top {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .hero-schedule strong {
    font-size: 34px;
    margin-top: 0;
    line-height: 1.2;
  }
  #hero-work-days {
    font-size: 10px;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
    min-height: 0;
  }
  .service-info h3 {
    font-size: 23px;
  }
  .service-info p {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .service-price {
    font-size: 28px;
  }
  .service-slots {
    font-size: 12px;
    min-height: 46px;
  }
  .section-aside {
    display: none;
  }
  .reviews-section .section-aside {
    display: block;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-image-wrap {
    aspect-ratio: 1.45;
  }
  .portfolio-placeholder {
    padding: 26px;
  }
  .portfolio-caption {
    padding: 24px;
  }
  .portfolio-caption h3 {
    font-size: 16px;
  }
  .portfolio-caption p {
    font-size: 12px;
  }

  .availability-dialog {
    width: calc(100% - 20px);
    padding: 23px;
    max-height: calc(100dvh - 20px);
    border-radius: 24px;
  }
  .availability-dialog h2 {
    font-size: 28px;
  }
  .form-columns {
    gap: 12px;
  }
  .field input,
  .field select {
    padding-inline: 9px;
  }
  .slots-header {
    align-items: flex-start;
  }
  .slots-header span {
    max-width: 120px;
    text-align: right;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.public-service-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}
.staff-avatar {
  overflow: hidden;
}
.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
