dialog.sheet-modal {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  border: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.34s ease,
    transform 0.34s cubic-bezier(0.2, 0.7, 0.2, 1),
    overlay 0.34s allow-discrete,
    display 0.34s allow-discrete;
}
dialog.sheet-modal[open] {
  opacity: 1;
  transform: none;
}
@starting-style {
  dialog.sheet-modal[open] {
    opacity: 0;
    transform: translateY(10px);
  }
}
dialog.sheet-modal::backdrop {
  background: rgba(43, 41, 38, 0);
  transition:
    background 0.34s ease,
    overlay 0.34s allow-discrete,
    display 0.34s allow-discrete;
}
dialog.sheet-modal[open]::backdrop {
  background: rgba(43, 41, 38, 0.4);
}
@starting-style {
  dialog.sheet-modal[open]::backdrop {
    background: rgba(43, 41, 38, 0);
  }
}
dialog.sheet-modal[open] .svc {
  animation: rise 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
dialog.sheet-modal[open] .svc:nth-of-type(1) {
  animation-delay: 0.1s;
}
dialog.sheet-modal[open] .svc:nth-of-type(2) {
  animation-delay: 0.17s;
}
dialog.sheet-modal[open] .svc:nth-of-type(3) {
  animation-delay: 0.24s;
}
dialog.sheet-modal[open] .svc:nth-of-type(4) {
  animation-delay: 0.31s;
}
dialog.sheet-modal[open] .svc:nth-of-type(5) {
  animation-delay: 0.38s;
}
dialog.sheet-modal[open] .svc:nth-of-type(6) {
  animation-delay: 0.45s;
}
dialog.sheet-modal[open] .svc:nth-of-type(7) {
  animation-delay: 0.52s;
}
@media (prefers-reduced-motion: reduce) {
  dialog.sheet-modal,
  dialog.sheet-modal::backdrop {
    transition: none;
  }
  dialog.sheet-modal[open] .svc {
    animation: none;
  }
}
.sheet {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 9vw, 110px) clamp(26px, 6vw, 64px);
  max-width: 720px;
  margin: 0 auto;
}
.sheet h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(32px, 5vw, 56px);
}
.svc {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: clamp(14px, 2vw, 20px) 0;
  border-top: 1px solid var(--line);
  transition: color 0.2s;
}
.svc:last-of-type {
  border-bottom: 1px solid var(--line);
}
.svc h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.svc .sub {
  margin-top: 4px;
  font-size: clamp(12px, 1.3vw, 13.5px);
  color: var(--soft);
}
.svc.all {
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--accent);
  padding: clamp(16px, 2.4vw, 24px) 0;
}
.svc.all:hover,
.svc.all:focus-visible {
  color: var(--ink);
}
.svc:hover h3,
.svc:focus-visible h3 {
  color: var(--accent);
}
.svc:focus-visible {
  outline: none;
}
.close {
  position: absolute;
  top: clamp(18px, 2.6vh, 30px);
  right: clamp(18px, 3vw, 34px);
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px;
  transition: color 0.2s;
}
.close:hover,
.close:focus-visible {
  color: var(--accent);
  outline: none;
}
